-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
36 lines (36 loc) · 986 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
29
30
31
32
33
34
35
36
{
"name": "es6-webpack-react-boilerplate",
"version": "1.0.0",
"description": "Boilerplate app using modern ES syntax",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "webpack --config ./webpack.config.js --content-base src --inline",
"devServer": "webpack-dev-server --config ./webpack.config.js --content-base src --inline --host 0.0.0.0 --port 8086"
},
"keywords": [
"React",
"ES6",
"EcmaScript",
"ES6tify",
"Webpack",
"Babel"
],
"author": "[email protected]",
"license": "ISC",
"dependencies": {
"lodash": "^3.10.1",
"react": "^0.13.3"
},
"devDependencies": {
"babel-loader": "^5.3.2",
"css-loader": "^0.18.0",
"extract-text-webpack-plugin": "^0.8.2",
"html-webpack-plugin": "^1.6.1",
"node-sass": "^3.3.3",
"sass-loader": "^2.0.1",
"style-loader": "^0.12.4",
"webpack": "^1.12.2",
"webpack-dev-server": "^1.11.0"
}
}