forked from GoogleChromeLabs/web-audio-samples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 1.15 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
{
"name": "web-audio-samples",
"version": "3.0.2",
"description": "A collection of projects, examples and resources for Web Audio API. Curated by the Chrome Web Audio team.",
"main": "index.js",
"scripts": {
"clean": "rimraf _site",
"build": "npm run clean && run-p build:*",
"build:eleventy": "ELEVENTY_ENV=production eleventy",
"build:postcss": "ELEVENTY_ENV=production postcss src/styles/*.css --dir _site",
"start": "run-p start:*",
"start:eleventy": "eleventy --serve",
"start:postcss": "postcss src/styles/*.css --dir _site --watch",
"format": "npx eslint --fix _site/audio-worklet/**/*.js && npx prettier --write --loglevel silent _site/audio-worklet/**/*.html"
},
"license": "MIT",
"dependencies": {
"@11ty/eleventy": "^1.0.0",
"@11ty/eleventy-navigation": "^0.3.3",
"autoprefixer": "^10.4.4",
"cssnano": "^5.1.7",
"eslint": "^8.17.0",
"eslint-config-google": "^0.14.0",
"html-minifier": "^4.0.0",
"js-yaml": "^4.1.0",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.12",
"postcss-cli": "^9.1.0",
"prettier": "^2.7.1",
"rimraf": "^3.0.2",
"tailwindcss": "^3.0.23"
}
}