-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
86 lines (86 loc) · 2.69 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
78
79
80
81
82
83
84
85
86
{
"name": "wsc",
"version": "0.0.1",
"description": "",
"main": "index.js",
"scripts": {
"build": "cross-env NODE_ENV=development webpack --config webpack.config.js",
"build:prod": "cross-env NODE_ENV=production webpack --config webpack.config.js",
"watch": "webpack --config webpack.config.js --watch",
"backend": "cross-env NODE_PATH=./ nodemon bootstrap",
"start": "cross-env NODE_ENV=development npm run backend",
"start-prod": "npm run build:prod && cross-env NODE_ENV=production npm run backend",
"stop": "pm2 kill",
"babel-node": "babel-node --plugins=transform-es2015-modules-commonjs",
"lint": "eslint -c .eslintrc ./server ./client",
"build:backend": "babel -d dist/ index.js && babel -d dist/server server && babel -d dist/shared shared && babel -d dist/config config"
},
"repository": {
"type": "git",
"url": "git+https://github.com/21-23/wsc.git"
},
"author": "21-23",
"license": "MIT",
"bugs": {
"url": "https://github.com/21-23/wsc/issues"
},
"homepage": "https://github.com/21-23/wsc#readme",
"dependencies": {
"babel-core": "^6.18.2",
"babel-loader": "^6.2.8",
"babel-plugin-transform-es2015-modules-commonjs": "^6.16.0",
"babel-polyfill": "^6.16.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-0": "^6.16.0",
"babel-register": "^6.18.0",
"cross-env": "^2.0.1",
"css-loader": "^0.23.1",
"eslint": "^3.5.0",
"eslint-plugin-react": "^6.2.0",
"express": "^4.14.0",
"file-loader": "^0.11.2",
"html-webpack-plugin": "^2.22.0",
"immutable": "^3.8.1",
"immutable-devtools": "0.0.7",
"lodash": "^4.17.2",
"material-ui": "^0.18.3",
"mongoose": "^4.7.0",
"morgan": "^1.7.0",
"nconf": "^0.8.4",
"nodemon": "^1.10.2",
"nskeymirror": "^0.1.2",
"pm2": "^2.4.6",
"pug": "^2.0.0-beta6",
"pug-loader": "^2.3.0",
"raven": "^2.2.1",
"react": "^15.3.1",
"react-addons-css-transition-group": "^15.3.2",
"react-dom": "^15.3.1",
"react-tap-event-plugin": "^2.0.1",
"redux": "^3.6.0",
"redux-action-minifier": "^0.0.2",
"redux-actions": "^1.1.0",
"redux-immutable": "^3.0.8",
"redux-logger": "^2.7.0",
"redux-observable": "^0.18.0",
"redux-rx": "^0.5.0",
"redux-saga": "^0.13.0",
"reselect": "^2.5.4",
"rx": "^4.1.0",
"rxjs": "5",
"shortid": "^2.2.6",
"style-loader": "^0.13.1",
"stylus": "^0.54.5",
"stylus-loader": "^2.1.1",
"telebot": "^1.0.6",
"url-loader": "^0.6.2",
"uws": "^10.148.0",
"vorpal": "^1.11.4",
"webpack": "^2.3.3",
"webpack-merge": "^4.1.0"
},
"devDependencies": {
"webpack-notifier": "^1.5.0"
}
}