-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
43 lines (43 loc) · 1.54 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
{
"name": "github-now",
"version": "1.0.7",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build:contentscript-background": "NODE_ENV=production webpack --config webpack.config.js",
"build": "npm run build:contentscript-background",
"watch:contentscript-background": "NODE_ENV=development webpack --config webpack.config.js -w",
"watch": "run-p watch:*",
"clean": "rm -rf dist && cpy manifest.json dist && cpy src/assets/* dist/assets",
"prebuild": "npm run clean",
"prewatch": "npm run clean",
"build:options": "npm run build --prefix src/options && cd src/options/build && rm manifest.json && cpy * /static/* ../../../dist/options --parents",
"watch:options": "npm run watch:build --prefix src/options",
"build:all": "npm run build && npm run build:options",
"zip": "bestzip github-now.zip dist/* && mkdir -p release/ && mv github-now.zip release/"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/chrome": "0.0.120",
"@types/node": "^14.0.23",
"awesome-typescript-loader": "^5.2.1",
"bestzip": "^2.1.7",
"cpy-cli": "^3.1.1",
"cra-build-watch": "^3.2.0",
"css-loader": "^3.6.0",
"fecha": "^4.2.0",
"mini-css-extract-plugin": "^0.9.0",
"node-sass": "^4.14.1",
"npm-run-all": "^4.1.5",
"sass-loader": "^9.0.2",
"ts-node": "^8.10.2",
"tslint": "^6.1.2",
"typescript": "^3.9.6",
"webpack": "^4.42.0",
"webpack-cli": "^3.3.12"
},
"dependencies": {}
}