-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
51 lines (51 loc) · 1.28 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
42
43
44
45
46
47
48
49
50
51
{
"name": "react-hot-boilerplate",
"version": "1.0.0",
"description": "Boilerplate for ReactJS project with hot code reloading",
"scripts": {
"dev": "./node_modules/.bin/nodemon --watch ./server server.js",
"start": "NODE_ENV=production node server.js",
"lint": "eslint src"
},
"repository": {
"type": "git",
"url": "https://github.com/gaearon/react-hot-boilerplate.git"
},
"keywords": [
"react",
"reactjs",
"boilerplate",
"hot",
"reload",
"hmr",
"live",
"edit",
"webpack"
],
"author": "Dan Abramov <[email protected]> (http://github.com/gaearon)",
"license": "MIT",
"bugs": {
"url": "https://github.com/gaearon/react-hot-boilerplate/issues"
},
"homepage": "https://github.com/gaearon/react-hot-boilerplate",
"devDependencies": {
"nodemon": "1.x.x",
"babel-eslint": "^3.1.9",
"eslint-plugin-react": "^2.3.0"
},
"dependencies": {
"react-hot-loader": "^1.3.0",
"webpack": "^1.9.6",
"webpack-dev-server": "^1.8.2",
"babel": "5.x.x",
"babel-loader": "^5.1.2",
"babel-runtime": "5.x.x",
"babel-core": "5.x.x",
"react": "^0.13.0",
"graphql": "0.4.x",
"underscore": "1.8.x",
"body-parser": "1.x.x",
"lokka": "1.x.x",
"lokka-transport-http": "1.x.x"
}
}