forked from gaearon/react-hot-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 2.09 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "react-hot-boilerplate",
"version": "1.0.0",
"description": "Boilerplate for ReactJS project with hot code reloading",
"scripts": {
"build": "webpack --config ./webpack/webpack-config.js --progress --profile --colors",
"watch": "webpack-dev-server --config ./webpack/dev-webpack-config.js --hot --inline --progress --colors",
"test": "echo \"No unit tests and e2e tests yet\" && exit 1",
"start-dev": "nodemon ./server/app.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": {
"autoprefixer-loader": "^2.0.0",
"babel-core": "^5.8.3",
"babel-eslint": "^3.1.9",
"babel-loader": "^5.1.2",
"bootstrap-sass": "~3.3.5",
"css-loader": "~0.15.6",
"eslint": "^0.24.1",
"eslint-plugin-react": "^3.1.0",
"extend": "~3.0.0",
"extract-text-webpack-plugin": "~0.8.2",
"file-loader": "~0.8.4",
"gulp": "^3.9.0",
"gulp-changed": "^1.2.1",
"gulp-if": "^1.2.5",
"gulp-load-plugins": "^1.0.0-rc",
"gulp-rename": "^1.2.2",
"gulp-size": "^1.2.3",
"gulp-util": "^3.0.6",
"gulp-webpack": "~1.5.0",
"minimist": "^1.1.2",
"node-sass": "~3.2.0",
"react-hot-loader": "^1.2.7",
"run-sequence": "^1.1.2",
"sass-loader": "~1.0.3",
"style-loader": "~0.12.3",
"url-loader": "~0.5.6",
"webpack": "^1.9.6",
"webpack-dev-server": "^1.8.2",
"process": "~0.11.1"
},
"dependencies": {
"bootstrap-sass": "~3.3.5",
"gulp-shell": "^0.4.2",
"html-webpack-plugin": "^1.6.0",
"jquery": "~2.1.4",
"lodash": "3.10.0",
"react": "^0.13.0",
"react-bootstrap": "^0.24.2",
"react-router": "~0.13.3"
}
}