-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.14 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
{
"name": "react-template",
"version": "1.0.0",
"description": "Blank set up for new React Project",
"main": "index.js",
"scripts": {
"dev:build": "webpack --config webpack.development.config.js --progress --colors",
"dev:start": "webpack-dev-server --hot --inline --progress --colors --config webpack.development.config.js",
"build": "webpack --config webpack.production.config.js",
"start": "open public/index.html"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jrans/React-Webpack-Set-Up.git"
},
"keywords": [
"React",
"Webpack",
"react-component"
],
"author": "jrans",
"license": "ISC",
"bugs": {
"url": "https://github.com/jrans/React-Webpack-Set-Up/issues"
},
"homepage": "https://github.com/jrans/React-Webpack-Set-Up#readme",
"dependencies": {
"babel-core": "^6.0.15",
"babel-loader": "^6.0.0",
"css-loader": "^0.21.0",
"jsx-loader": "^0.13.2",
"react": "^0.14.1",
"react-dom": "^0.14.2",
"style-loader": "^0.13.0",
"webpack": "^1.12.2"
},
"devDependencies": {
"react-hot-loader": "^1.3.0",
"webpack-dev-server": "^1.12.1"
}
}