-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.44 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
42
43
44
45
46
47
48
{
"name": "nil-browser",
"version": "0.1.0",
"private": true,
"dependencies": {
"@types/chrome": "0.0.91",
"@types/node": "^12.12.17",
"awesome-typescript-loader": "^5.2.1",
"bestzip": "^2.1.4",
"cpy-cli": "^3.0.0",
"dotenv-webpack": "^1.7.0",
"npm-run-all": "^4.1.5",
"ts-node": "^8.5.4",
"tslint": "^5.18.0",
"typescript": "^3.7.3",
"webextension-polyfill-ts": "^0.11.0",
"webpack": "4.41.2",
"webpack-cli": "^3.3.6"
},
"scripts": {
"clean": "rm -rf dist",
"prebuild": "npm run clean",
"build:scripts": "NODE_ENV=production webpack --config internal/webpack.config.js",
"build:popup": "npm run build --prefix src/popup && cpy 'src/assets/**/*' dist/assets && cpy manifest.json dist && cd src/popup/build && cpy '**/*' '../../../dist/popup' --parents",
"build": "npm-run-all build:*",
"prewatch": "npm run clean",
"watch:scripts": "NODE_ENV=development webpack --config internal/webpack.config.js -w",
"watch:popup": "npm run watch --prefix src/popup",
"start": "npm-run-all --parallel watch:*",
"zip": "bestzip extension.zip dist/*",
"postinstall": "cd src/popup && yarn install"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}