-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1.2 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
{
"name": "react-spa-boilerplate",
"version": "1.0.0",
"description": "Clone and Play React + Webpack Single Page Application Minimal Boilerplate",
"author": "Leonardo Kewitz <[email protected]>",
"license": "MIT",
"scripts": {
"build": "NODE_ENV=production webpack --config webpack.production.config.js",
"start": "webpack-dev-server --config webpack.devel.config.js --devtool eval --progress --hot --content-base app"
},
"devDependencies": {
"babel-core": "6.x",
"babel-eslint": "7.x",
"babel-loader": "6.x",
"babel-plugin-transform-runtime": "6.x",
"babel-preset-es2015": "6.x",
"babel-preset-react": "6.x",
"babel-preset-stage-0": "6.x",
"babel-runtime": "6.x",
"copy-webpack-plugin": "^4.2.0",
"css-loader": "~0.26.1",
"eslint": "^4.10.0",
"eslint-plugin-compat": "^2.0.1",
"eslint-plugin-react": "^7.4.0",
"extract-text-webpack-plugin": "^3.0.2",
"less": "^2.7.3",
"less-loader": "^4.0.5",
"normalize.css": "^7.0.0",
"open-browser-webpack-plugin": "0.0.3",
"prop-types": "^15.6.0",
"react": "15.x",
"react-dom": "15.x",
"style-loader": "~0.13.1",
"webpack": "^3.8.1",
"webpack-dev-server": "^2.9.3"
}
}