forked from luin/CodeGame
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.42 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
{
"name": "CodeGame",
"version": "1.1.0",
"author": {
"name": "Zihua Li",
"email": "[email protected]",
"url": "http://zihua.li"
},
"private": true,
"scripts": {
"watch": "gulp watch",
"build": "gulp build",
"rank": "NODE_ENV=production node services/calc_rank.js",
"tournament": "NODE_ENV=production node services/calc_tournament.js"
},
"dependencies": {
"aqsort": "^1.1.0",
"async": "^0.9.0",
"body-parser": "~1.0.0",
"codemirror": "^4.6.0",
"config": "^1.2.1",
"connect-redis": "^2.1.0",
"cookie-parser": "~1.0.1",
"debug": "~0.7.4",
"express": "^4.0.0",
"express-session": "^1.8.2",
"inflection": "^1.5.0",
"jade": "~1.3.0",
"jquery": "^2.1.1",
"jquery.transit": "^0.9.12",
"jshint": "^2.5.6",
"jsonpack": "^1.1.2",
"moment": "^2.8.4",
"morgan": "~1.0.0",
"mysql": "^2.5.2",
"node-require-directory": "^1.0.2",
"octonode": "^0.6.6",
"seedrandom": "~2.3.10",
"sequelize": "^2.0.0-rc1",
"static-favicon": "~1.0.0"
},
"devDependencies": {
"gulp": "^3.8.8",
"gulp-browserify": "^0.5.0",
"gulp-myth": "^1.0.1",
"gulp-sketch": "0.0.6",
"gulp-uglify": "^1.0.1"
},
"jshintConfig": {
"undef": true,
"unused": true,
"node": true,
"predef": [
"Map",
"Result",
"Tournament",
"Code",
"History",
"User",
"Game",
"Promise"
]
}
}