-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.09 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.09 KB
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
{
"name": "polyjuicer",
"version": "1.0.0",
"description": "",
"private": true,
"scripts": {
"lint": "tslint --project .",
"tsc": "tsc",
"build:bg": "webpack --config webpack.background.config.js",
"build:bg:watch": "webpack --config webpack.background.config.js --watch",
"build:popup": "webpack --config webpack.popup.config.js",
"build:popup:watch": "webpack --config webpack.popup.config.js --watch",
"build": "npm run build:bg && npm run build:popup",
"build:watch": "npm-run-all -rpl build:bg:watch build:popup:watch"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@types/chrome": "0.0.122",
"@types/jquery": "^3.5.0",
"@types/lodash": "^4.14.158",
"@types/node": "^14.0.24",
"bootstrap": "^4.5.0",
"copy-webpack-plugin": "^6.0.3",
"css-loader": "^3.6.0",
"jquery": "^3.5.1",
"npm-run-all": "^4.1.5",
"style-loader": "^1.2.1",
"ts-loader": "^8.0.1",
"tslint": "^6.1.2",
"tslint-config-airbnb": "^5.11.2",
"typescript": "^3.9.7",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.12"
}
}