-
Notifications
You must be signed in to change notification settings - Fork 197
/
package.json
41 lines (41 loc) · 1.43 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
34
35
36
37
38
39
40
41
{
"name": "web-audio-samples",
"version": "3.2.0",
"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",
"build:rainfly": "cd src/rainfly && npm run build",
"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",
"test": "npx playwright test",
"test-server": "npx http-server",
"test-live": "npx http-server ./src/tests/playwright/pages/"
},
"license": "MIT",
"dependencies": {
"@11ty/eleventy": "^2.0.1",
"@11ty/eleventy-navigation": "^0.3.5",
"autoprefixer": "^10.4.19",
"cssnano": "^7.0.1",
"eslint": "8.57.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.38",
"postcss-cli": "^11.0.0",
"prettier": "^3.2.5",
"rimraf": "^5.0.7",
"tailwindcss": "^3.4.3"
},
"devDependencies": {
"@playwright/test": "latest",
"@types/node": "^20.12.13"
}
}