forked from borisd/react-lecture-sample
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 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
52
53
{
"name": "react-starter",
"version": "0.0.1",
"description": "Simple React 0.14.0 starter with WebPack and ES6",
"scripts": {
"start": "node server.js"
},
"repository": {
"type": "git",
"url": "https://github.com/500tech/react-webpack-es6.git"
},
"keywords": [
"react",
"reactjs",
"boilerplate",
"kickstart",
"hot",
"babel",
"reload",
"live",
"webpack",
"es6"
],
"author": "Boris Dinkevich (boris@500tech.com",
"license": "MIT",
"bugs": {
"url": "https://github.com/500tech/react-webpack-es6/issues"
},
"homepage": "https://github.com/500tech/react-webpack-es6",
"devDependencies": {
"babel-core": "^5.4.7",
"babel-eslint": "^3.1.9",
"babel-loader": "^5.1.2",
"babel-plugin-react-transform": "^1.1.1",
"react-transform-catch-errors": "^1.0.0",
"react-transform-hmr": "^1.0.0",
"redbox-react": "^1.0.1",
"webpack": "^1.9.6",
"webpack-dev-middleware": "^1.2.0",
"webpack-hot-middleware": "^2.0.0",
"css-loader": "^0.19.0",
"file-loader": "^0.8.1",
"style-loader": "^0.12.2",
"express": "^4.13.3",
"url-loader": "0.5.6"
},
"dependencies": {
"react": "^0.14.0",
"react-bootstrap": "^0.27.2",
"react-dom": "^0.14.0",
"superagent": "^1.4.0"
}
}