-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 1.07 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
{
"name": "webpack-performance-training-project",
"version": "1.0.0",
"private": true,
"scripts": {
"prod:build": "npm run check-app-config && cross-env NODE_ENV=production webpack",
"prod:server": "http-server public",
"dev:server": "npm run check-app-config && webpack-dev-server",
"check-app-config": "node ./helpers/check-app-config.js",
"token": "node ./helpers/save-github-token.js"
},
"dependencies": {
"@babel/polyfill": "^7.0.0",
"hash-router": "^0.4.0",
"moment": "^2.22.2",
"whatwg-fetch": "^3.0.0"
},
"devDependencies": {
"@babel/core": "^7.1.0",
"@babel/preset-env": "^7.1.0",
"babel-loader": "^8.0.2",
"chalk": "^2.4.1",
"cross-env": "^5.2.0",
"css-loader": "^1.0.0",
"file-loader": "^2.0.0",
"html-webpack-harddisk-plugin": "^0.2.0",
"html-webpack-plugin": "^3.2.0",
"http-server": "^0.11.1",
"lighthouse-ci": "git+https://github.com/ebidel/lighthouse-ci.git",
"style-loader": "^0.23.0",
"webpack": "^4.19.1",
"webpack-cli": "^3.1.0",
"webpack-dev-server": "^3.1.8"
}
}