-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 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
44
45
46
47
48
49
50
{
"name": "webpack-demo",
"version": "1.0.0",
"description": "",
"main": "main.js",
"dependencies": {
"prop-types": "^15.6.2",
"react": "^16.4.2",
"react-dom": "^16.4.2",
"react-loadable": "^5.5.0"
},
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.0",
"@babel/plugin-proposal-class-properties": "^7.0.0",
"@babel/plugin-syntax-dynamic-import": "^7.0.0",
"@babel/plugin-transform-arrow-functions": "^7.0.0",
"@babel/plugin-transform-classes": "^7.0.0",
"@babel/plugin-transform-template-literals": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/preset-es2015": "^7.0.0-beta.53",
"@babel/preset-react": "^7.0.0",
"babel": "^6.23.0",
"babel-cli": "^6.26.0",
"babel-eslint": "^9.0.0",
"babel-loader": "^8.0.0",
"babel-plugin-transform-react-remove-prop-types": "^0.4.18",
"clean-webpack-plugin": "^0.1.19",
"eslint": "^5.5.0",
"eslint-plugin-react": "^7.11.1",
"happypack": "^5.0.0",
"html-webpack-plugin": "^3.2.0",
"sass-loader": "^7.1.0",
"script-ext-html-webpack-plugin": "^2.0.1",
"webpack": "^4.17.1",
"webpack-bundle-analyzer": "^3.0.3",
"webpack-cli": "^3.1.0",
"webpack-dev-server": "^3.1.7"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "webpack-dev-server --open --colors --config build/webpack.dev.js",
"build": "SET \"BABEL_ENV=production\" && webpack --color --config build/webpack.prod.js"
},
"keywords": [
"webpack"
],
"author": "",
"license": "ISC"
}