forked from nfq-eta/react-hmr-example
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 835 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 835 Bytes
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
{
"name": "react-hmr",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "BABEL_ENV=production NODE_ENV=production webpack -p",
"start": "webpack-dev-server --hot"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"babel-core": "^6.7.7",
"babel-loader": "^6.2.4",
"babel-plugin-transform-react-constant-elements": "^6.9.1",
"babel-plugin-transform-react-remove-prop-types": "^0.2.11",
"babel-polyfill": "^6.16.0",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"babel-preset-react-hmre": "^1.1.1",
"babili": "^0.0.9",
"html-webpack-plugin": "^2.24.1",
"webpack": "^1.13.0",
"webpack-dev-server": "^1.16.5"
},
"dependencies": {
"react": "^15.4.1",
"react-dom": "^15.4.1"
}
}