-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
28 lines (28 loc) · 873 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
{
"name": "react-webpack-code-splitting",
"version": "1.0.0",
"main": "index.js",
"repository": "git@github.com:jeantimex/react-webpack-code-splitting.git",
"license": "MIT",
"scripts": {
"start": "NODE_ENV=development node webpack/webpack-dev-server --env.dev",
"build": "rm -Rf build/* | NODE_ENV=production webpack --config webpack/webpack.config.js --progress --env.prod"
},
"dependencies": {
"lodash": "^4.17.4",
"react": "^15.6.1",
"react-dom": "^15.6.1",
"react-router": "^3.0.0"
},
"devDependencies": {
"babel-core": "^6.25.0",
"babel-loader": "^7.1.1",
"babel-preset-latest": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"html-webpack-plugin": "^2.29.0",
"webpack": "^2.2.0",
"webpack-bundle-analyzer": "^2.8.3",
"webpack-dev-server": "^2.2.0"
}
}