-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
65 lines (65 loc) · 2 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
{
"main": "index.js",
"version": "0.5.3",
"scripts": {
"start": "node ./app/start.js",
"stop": "node ./app/stop.js",
"reload": "node ./app/reload.js",
"log": "node ./app/log.js",
"web": "webpack-dev-server --config ./web/webpack.config.js",
"server": "cross-env NODE_ENV=development node ./app/server.js",
"dev": "yarn web & yarn server",
"build": "cross-env NODE_ENV=production webpack --env.prod=true --config ./web/webpack.config.js",
"watch": "cross-env NODE_ENV=production webpack --env.prod=true --config ./web/webpack.config.js --watch"
},
"dependencies": {
"always-tail": "^0.2.0",
"antd": "^2.9.*",
"axios": "^0.16.1",
"jsonwebtoken": "^7.4.0",
"koa": "^2.2.0",
"koa-bodyparser": "^4.2.0",
"koa-compress": "^2.0.0",
"koa-favicon": "^2.0.0",
"koa-static": "^3.0.0",
"log4js": "^1.1.1",
"mobx": "^3.1.9",
"mobx-react": "^4.1.7",
"moment": "^2.18.1",
"nedb": "^1.8.0",
"node-ssh": "^4.2.2",
"nodemailer": "^4.0.1",
"react": "^15.4.2",
"react-dom": "^15.4.2",
"react-helmet": "^5.0.3",
"react-router": "^2.*",
"recluster": "^0.4.5",
"socket.io": "^1.7.3"
},
"devDependencies": {
"autoprefixer": "^6.7.7",
"babel-core": "^6.23.1",
"babel-eslint": "^7.2.1",
"babel-loader": "^6.3.2",
"babel-plugin-import": "^1.1.1",
"babel-plugin-react-css-modules": "^2.6.1",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-polyfill": "^6.23.0",
"babel-preset-latest": "^6.22.0",
"babel-preset-react": "^6.23.0",
"babel-preset-stage-0": "^6.24.1",
"clean-webpack-plugin": "^0.1.16",
"cross-env": "^4.0.0",
"css-loader": "^0.28.0",
"file-loader": "^0.11.1",
"html-webpack-plugin": "^2.28.0",
"less": "^2.7.2",
"less-loader": "^4.0.3",
"mobx-react-devtools": "^4.2.11",
"postcss-loader": "^1.3.3",
"react-hot-loader": "^3.0.0-beta.6",
"style-loader": "^0.16.1",
"webpack": "^2.2.1",
"webpack-dev-server": "^2.4.2"
}
}