-
-
Notifications
You must be signed in to change notification settings - Fork 136
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 722 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 722 Bytes
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
{
"name": "webpack-analyse",
"version": "0.0.0",
"private": true,
"scripts": {
"build": "rimraf dist && webpack --mode production --env.longTermCaching --env.googleAnalytics",
"deploy": "yarn build && gh-pages -d dist -m \"Publish\" -a",
"dev": "webpack-dev-server"
},
"dependencies": {
"d3": "^5.15.0",
"jquery": "^3.4.1"
},
"devDependencies": {
"css-loader": "^3.4.0",
"gh-pages": "^2.1.1",
"html-webpack-plugin": "^4.0.0-beta.11",
"imports-loader": "^0.8.0",
"pug": "^2.0.4",
"pug-loader": "^2.4.0",
"rimraf": "^3.0.0",
"style-loader": "^1.1.2",
"webpack": "^5.0.0-beta.11",
"webpack-cli": "^3.3.10",
"webpack-dev-server": "^3.10.1"
}
}