-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
31 lines (31 loc) · 889 Bytes
/
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
{
"name": "noise",
"description": "Make sound response when events happen",
"private": true,
"dependencies": {
"nanoid": "^4.0.0"
},
"devDependencies": {
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^11.0.0",
"cross-env": "^7.0.3",
"css-loader": "^6.7.2",
"mini-css-extract-plugin": "^2.6.1",
"sass": "^1.56.1",
"sass-loader": "^13.2.0",
"web-ext": "^7.3.1",
"webextension-polyfill": "^0.10.0",
"webpack": "^5.94.0",
"webpack-cli": "^4.10.0",
"yargs": "^17.6.2",
"zip-webpack-plugin": "^4.0.1"
},
"scripts": {
"build": "webpack",
"build:prod": "cross-env NODE_ENV=production webpack",
"test": "node ./test.js --source-dir build",
"build:chrome": "cross-env BROWSER=chrome webpack",
"build:prod:chrome": "cross-env NODE_ENV=production BROWSER=chrome webpack"
},
"license": "MIT"
}