forked from romabelka/React-course-for-javascript.ru
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.74 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
{
"name": "react_spa",
"version": "1.0.0",
"description": "Application for Best practice SPA with React workshop",
"main": "index.js",
"scripts": {
"build:webpack": "NODE_ENV=production webpack --config webpack.config.prod.js",
"build": "npm run build:webpack",
"start": "concurrent --kill-others \"node devServer.js\" \"supervisor -w ./simple_api simple_api/server.js\"",
"lint": "eslint src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/romabelka/react_spa.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/romabelka/react_spa/issues"
},
"homepage": "https://github.com/romabelka/react_spa#readme",
"devDependencies": {
"babel-core": "^5.4.7",
"babel-eslint": "^3.1.9",
"babel-loader": "^5.1.2",
"babel-plugin-react-transform": "^1.1.1",
"concurrently": "^1.0.0",
"css-loader": "^0.23.1",
"eslint": "^1.3.1",
"eslint-plugin-react": "^2.3.0",
"events": "^1.1.0",
"express": "^4.13.3",
"flux": "^2.1.1",
"history": "^1.13.1",
"jquery": "^2.2.0",
"keymirror": "^0.1.1",
"lodash": "^4.2.0",
"react": "^0.14.3",
"react-dom": "^0.14.3",
"react-router": "^1.0.3",
"react-select": "^0.9.1",
"react-transform-catch-errors": "^1.0.0",
"react-transform-hmr": "^1.0.0",
"redbox-react": "^1.0.1",
"rimraf": "^2.4.3",
"style-loader": "^0.13.0",
"supervisor": "^0.9.1",
"webpack": "^1.9.6",
"webpack-dev-middleware": "^1.2.0",
"webpack-hot-middleware": "^2.0.0"
},
"dependencies": {
"events": "^1.1.0",
"flux": "^2.1.1",
"http-proxy": "^1.12.0",
"react-addons-linked-state-mixin": "^0.14.6",
"react-router": "^1.0.3",
"react-select": "^0.9.1"
}
}