-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
34 lines (34 loc) · 992 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
{
"name": "react-hot-loader-examples",
"version": "0.0.1",
"description": "Examples demonstrating how to use React Hot Loader 3 with various libraries in the React ecosystem",
"main": "server.js",
"scripts": {
"start": "node server"
},
"repository": {
"type": "git",
"url": "https://github.com/calesce/react-hot-loader-examples"
},
"author": "Cale Newman <newman.cale@gmail.com> (http://github.com/calesce)",
"license": "MIT",
"dependencies": {
"express": "^4.14.0"
},
"devDependencies": {
"babel-core": "^6.14.0",
"babel-eslint": "^7.0.0",
"babel-loader": "^6.2.5",
"babel-preset-es2015": "^6.14.0",
"babel-preset-react": "^6.11.1",
"eslint": "^3.6.1",
"eslint-plugin-react": "^6.3.0",
"react": "^15.3.2",
"react-dom": "^15.3.2",
"react-hot-loader": "^3.0.0-beta.5",
"react-router": "^2.8.1",
"webpack": "^1.13.2",
"webpack-dev-middleware": "^1.8.3",
"webpack-hot-middleware": "^2.12.2"
}
}