-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.17 KB
/
Copy pathpackage.json
File metadata and controls
38 lines (38 loc) · 1.17 KB
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
{
"name": "code-splitting",
"version": "1.0.0",
"description": "A beginner's guide to Code Splitting with React Router and Webpack 2",
"main": "index.js",
"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"
},
"repository": {
"type": "git",
"url": "https://github.com/brotzky/code-splitting.git"
},
"author": "Dennis Brotzky <brotzky@gmail.com>",
"homepage": "https://github.com/brotzky/code-splitting",
"dependencies": {
"react": "15.4.2",
"react-dom": "15.4.2",
"react-router": "^3.0.2"
},
"devDependencies": {
"autoprefixer": "^6.7.7",
"babel-core": "^6.18.2",
"babel-loader": "^6.2.7",
"babel-preset-latest": "^6.16.0",
"babel-preset-react": "^6.16.0",
"css-loader": "^0.27.3",
"extract-text-webpack-plugin": "^2.1.0",
"html-webpack-plugin": "^2.24.1",
"node-sass": "^4.5.1",
"postcss": "^5.2.16",
"postcss-loader": "^1.3.3",
"sass-loader": "^6.0.3",
"style-loader": "^0.15.0",
"webpack": "^2.2.1",
"webpack-dev-server": "^2.4.1"
}
}