-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
77 lines (77 loc) · 2.62 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
74
75
76
77
{
"name": "universal-react",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "webpack --verbose --colors --display-error-details --config webpack/prod.config.js",
"start:prod": "NODE_ENV=production NODE_PATH=./platforms:./src PORT=8080 node ./platforms/server",
"start:dev": "NODE_ENV=development NODE_PATH=./platforms:./src PORT=8080 nodemon ./platforms/server",
"start:hot": "UV_THREADPOOL_SIZE=100 NODE_PATH=./platforms:./src PORT=8080 node webpack/hot-server",
"lint": "eslint -c .eslintrc ./"
},
"dependencies": {
"autoprefixer": "^6.3.3",
"axios": "^0.8.1",
"babel-core": "^6.5.2",
"babel-loader": "^6.2.3",
"babel-plugin-transform-async-to-generator": "^6.4.0",
"babel-plugin-transform-class-properties": "^6.4.0",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-object-rest-spread": "^6.3.13",
"babel-plugin-transform-react-constant-elements": "^6.3.13",
"babel-plugin-transform-react-inline-elements": "^6.3.13",
"babel-polyfill": "^6.3.14",
"babel-preset-es2015": "^6.3.13",
"babel-preset-react": "^6.3.13",
"babel-runtime": "^6.5.0",
"bluebird": "^3.1.1",
"body-parser": "^1.15.0",
"clean-webpack-plugin": "^0.1.6",
"compression": "^1.6.0",
"cookie-parser": "^1.4.1",
"css-loader": "^0.23.1",
"express": "^4.13.3",
"file-loader": "^0.8.5",
"history": "2.0.0-rc2",
"jsonfile": "^2.2.3",
"postcss-loader": "^0.8.2",
"pretty-error": "^2.0.0",
"react": "^0.14.6",
"react-dom": "^0.14.6",
"react-helmet": "^2.3.1",
"react-redux": "^4.0.6",
"react-router": "2.0.0-rc5",
"react-router-redux": "^4.0.0-beta.1",
"reasync": "^1.0.0-rc.1",
"redux": "^3.3.1",
"redux-axios-middleware": "^0.2.0",
"redux-form": "^4.1.1",
"serialize-javascript": "^1.1.2",
"serve-favicon": "^2.3.0",
"style-loader": "^0.13.0",
"url-loader": "^0.5.7",
"uuid": "^2.0.1",
"webpack": "^1.12.10",
"webpack-isomorphic-tools": "^2.2.24"
},
"devDependencies": {
"babel-eslint": "^5.0.0",
"babel-plugin-react-transform": "^2.0.0",
"clean-webpack-plugin": "^0.1.6",
"eslint": "~2.2.0",
"eslint-config-airbnb": "^6.0.1",
"eslint-plugin-import": "^1.0.0-beta.0",
"eslint-plugin-react": "^4.0.0",
"nodemon": "^1.8.1",
"react-transform-hmr": "^1.0.1",
"redux-devtools": "^3.0.1",
"redux-devtools-dock-monitor": "^1.0.1",
"redux-devtools-log-monitor": "^1.0.1",
"webpack-dev-middleware": "^1.4.0",
"webpack-hot-middleware": "^2.6.0"
},
"keywords": [],
"author": "",
"license": "ISC"
}