-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.29 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
{
"name": "os-web",
"version": "0.0.0",
"main": "dist/server",
"scripts": {
"web": "webpack -w --progress --config task/webpack.web",
"web.prod": "webpack -w --progress --config task/webpack.web.prod",
"server": "webpack -w --progress --config task/webpack.server",
"start": "nodemon --exec node ."
},
"devDependencies": {
"babel-core": "^6.5.2",
"babel-eslint": "^5.0.0",
"babel-loader": "^6.2.3",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-preset-async-to-bluebird": "^1.0.0",
"babel-preset-es2015": "^6.5.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-0": "^6.5.0",
"css-loader": "^0.23.1",
"eslint": "^2.1.0",
"eslint-config-rackt": "^1.1.1",
"eslint-config-xo-react": "^0.4.0",
"eslint-loader": "^1.3.0",
"eslint-plugin-react": "^3.16.1",
"npm-install-webpack-plugin": "^2.0.2",
"style-loader": "^0.13.0",
"webpack": "^1.12.13",
"webpack-notifier": "^1.2.1"
},
"dependencies": {
"babel-polyfill": "^6.5.0",
"bluebird": "^3.3.1",
"koa": "^2.0.0-alpha.3",
"koa-convert": "^1.2.0",
"koa-logger": "^2.0.0",
"koa-mount": "^1.3.0",
"koa-router": "^7.0.1",
"koa-static": "^2.0.0",
"lodash": "^4.5.0",
"react": "^0.14.7",
"react-dom": "^0.14.7"
}
}