-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
35 lines (35 loc) · 922 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
32
33
34
35
{
"name": "webpack-chrome-extension-v3",
"version": "1.0.0",
"description": "webpack with chrome extension v3",
"scripts": {
"start": "node utils/webserver.js",
"watch": "webpack --watch",
"watch:dev": "webpack --watch --mode development",
"build": "webpack"
},
"author": "Jeevan Lal",
"repository": {
"type": "git",
"url": "#"
},
"license": "MIT",
"devDependencies": {
"babel-loader": "^8.2.2",
"babel-minify": "^0.5.1",
"clean-webpack-plugin": "^4.0.0-alpha.0",
"copy-webpack-plugin": "^9.0.1",
"css-loader": "^6.2.0",
"file-loader": "^6.2.0",
"fs-extra": "^10.0.0",
"html-loader": "^2.1.2",
"html-webpack-plugin": "^5.3.2",
"sass": "^1.37.5",
"sass-loader": "^12.1.0",
"source-map-loader": "^3.0.0",
"style-loader": "^3.2.1",
"webpack": "^5.48.0",
"webpack-cli": "^4.7.2",
"webpack-dev-server": "^3.11.2"
}
}