-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
132 lines (132 loc) · 3.7 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
{
"name": "fun-portal",
"version": "0.0.1",
"description": "Gomoku Brain Battle Portal",
"private": true,
"license": "AGPL-1.0",
"scripts": {
"start": "node .dist/server.js",
"match": "node .dist/cli.js DI.match",
"cli": "node .dist/cli.js",
"build:server": "gulp clean:server && gulp server",
"build:ui:dev": "gulp fe:iconfont && webpack --progress --colors --display-error-details --bail",
"build:ui": "npm run build:ui:dev -- --optimize-minimize",
"watch:server": "gulp clean:server && gulp",
"watch:ui": "npm run build:ui:dev -- --watch"
},
"optionalDependencies": {
"fsevents": "*"
},
"dependencies": {
"aigle": "^1.10.1",
"app-module-path": "^2.2.0",
"babel-runtime": "^6.26.0",
"basic-auth": "^2.0.0",
"bcrypt-as-promised": "^1.1.0",
"bluebird": "^3.5.1",
"body-parser": "^1.18.2",
"chalk": "^2.3.0",
"clipboard": "^1.7.1",
"compression": "^1.7.1",
"connect-mongo": "^2.0.1",
"cookie-parser": "^1.4.3",
"csurf": "^1.9.0",
"dg-error-factory": "^1.0.2",
"dg-framework": "^2.0.2",
"diff-dom": "^2.3.1",
"elo-rank": "^1.0.3",
"eventemitter2": "^5.0.1",
"express": "^4.16.2",
"express-decorators": "^0.5.0",
"express-session": "^1.15.6",
"filesize": "^3.5.11",
"flex-layout-attribute": "^1.0.3",
"fs-promise": "^2.0.3",
"gridfs-stream": "^1.1.1",
"helmet": "^3.9.0",
"jquery": "^3.3.1",
"jquery-scroll-lock": "^3.1.3",
"jquery.easing": "^1.4.1",
"jquery.transit": "^0.9.12",
"lodash": "^4.17.4",
"method-override": "^2.3.10",
"moment": "^2.20.1",
"mongoose": "^5.0.1",
"morgan": "^1.9.0",
"multer": "^1.3.0",
"normalize.css": "^7.0.0",
"nunjucks": "^3.0.1",
"oauth": "^0.9.15",
"oauth-jaccount": "^0.0.1",
"open-color": "^1.6.2",
"prism-themes": "^1.0.0",
"prismjs": "^1.10.0",
"queue": "^4.4.2",
"rascal": "breeswish/rascal#promisify-friendly",
"redis": "^2.8.0",
"request": "^2.83.0",
"request-promise-native": "^1.0.5",
"rupture": "^0.7.1",
"showdown": "^1.8.6",
"slideout": "^1.0.1",
"socket.io": "^2.0.4",
"socket.io-client": "^2.0.4",
"source-map-support": "^0.5.2",
"sticky-kit": "^1.1.3",
"tether": "^1.4.3",
"tether-drop": "^1.4.2",
"timeago.js": "^3.0.2",
"uuid": "^3.2.1",
"validator": "^9.2.0",
"winston": "^2.4.0",
"yargs": "^10.1.1"
},
"devDependencies": {
"autoprefixer": "^7.2.4",
"babel-core": "^6.26.0",
"babel-eslint": "^8.2.1",
"babel-loader": "^7.1.2",
"babel-plugin-lodash": "^3.3.2",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.1",
"babel-preset-stage-0": "^6.24.1",
"copy-webpack-plugin": "^4.3.1",
"css-loader": "^0.28.9",
"del": "^3.0.0",
"eslint": "^4.16.0",
"eslint-loader": "^1.5.0",
"eslint-plugin-babel": "^4.1.2",
"extract-text-webpack-plugin": "^3.0.2",
"file-loader": "^1.1.6",
"flowchart.js": "^1.8.0",
"fs-extra": "^5.0.0",
"gulp": "^4.0.0",
"gulp-babel": "^7.0.0",
"gulp-eslint": "^4.0.1",
"gulp-file-cache": "0.0.1",
"gulp-iconfont": "^9.1.0",
"gulp-nodemon": "^2.2.1",
"gulp-nunjucks": "^3.1.1",
"gulp-plumber": "^1.2.0",
"gulp-sourcemaps": "^2.6.3",
"gulp-svgmin": "^1.2.3",
"happypack": "^4.0.1",
"postcss-loader": "^2.0.10",
"style-loader": "^0.19.1",
"stylus": "^0.54.5",
"stylus-loader": "^3.0.1",
"url-loader": "^0.6.2",
"webpack": "^3.10.0"
},
"babel": {
"presets": [
"env",
"stage-0"
],
"plugins": [
"transform-runtime",
"transform-decorators-legacy"
]
}
}