forked from odota/core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
95 lines (95 loc) · 2.87 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
{
"name": "yasp",
"description": "Open source Dota 2 replay parsing and statistics",
"version": "6.0.0",
"license": "GPL-3.0",
"main": "deploy.js",
"scripts": {
"start": "node deploy",
"test": "test/run.sh",
"coveralls": "cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage",
"ncu": "npm-check-updates -u",
"webpack": "webpack -p --bail",
"watch": "webpack --watch",
"mocha": "mocha",
"maven": "mvn -q -f java_parser/pom.xml clean install -U",
"build": "npm install && npm run maven && npm run webpack",
"kube": "kubectl get rc -o name --selector tier=backend | cut -d '/' -f2 | xargs -n1 kubectl rolling-update --image=yasp/yasp:latest",
"rediskeys": "redis-cli keys '*' | cut -d':' -f1 | sort | uniq -c",
"resetpicks": "redis-cli keys 'picks_*' | xargs redis-cli del",
"updateconstants": "node tasks/updateconstants",
"dockerbuild": "sudo docker build -t yasp/yasp ."
},
"repository": {
"type": "git",
"url": "http://github.com/yasp-dota/yasp"
},
"dependencies": {
"JSONStream": "^1.0.7",
"async": "1.5.2",
"big-number": "0.4.0",
"body-parser": "1.15.0",
"bootstrap": "^3.3.6",
"bootswatch": "^3.3.6",
"braintree": "^1.35.0",
"bull": "yasp-dota/bull#production",
"c3": "yasp-dota/c3",
"cal-heatmap": "3.5.4",
"cassandra-driver": "^3.0.0",
"chance": "^1.0.1",
"compression": "^1.6.1",
"connect-multiparty": "^2.0.0",
"connect-redis": "^3.0.2",
"cookie-session": "^2.0.0-alpha.1",
"d3": "^3.5.16",
"datatables": "^1.10.9",
"datatables-bootstrap3-plugin": "^0.4.0",
"dota2": "^3.0.0",
"dota2-minimap-hero-sprites": "^2.0.0",
"dotenv": "^2.0.0",
"express": "^4.13.4",
"express-session": "^1.13.0",
"flag-icon-css": "^1.0.0",
"font-awesome": "^4.5.0",
"heatmap.js": "2.0.0",
"http-proxy": "^1.13.1",
"jade": "^1.11.0",
"jquery": "^2.2.0",
"knex": "^0.11.7",
"moment": "^2.11.2",
"multer": "^1.1.0",
"numeral": "^1.5.3",
"passport": "0.3.2",
"passport-steam": "1.0.1",
"pg": "^4.4.4",
"pg-query-stream": "^1.0.0",
"pm2": "^1.1.1",
"qtip2": "3.0.2",
"redis": "2.5.3",
"request": "2.72.0",
"request-progress": "2.0.1",
"select2": "^4.0.2",
"select2-bootstrap-theme": "0.1.0-beta.4",
"sentiment": "1.0.6",
"steam": "1.4.0",
"stripe": "4.5.0",
"wordcloud": "1.0.3",
"world-countries": "1.7.8"
},
"devDependencies": {
"coveralls": "2.11.9",
"css-loader": "^0.23.1",
"database-cleaner": "^0.13.0",
"expose-loader": "^0.7.1",
"file-loader": "^0.8.5",
"istanbul": "^0.4.2",
"json-loader": "^0.5.4",
"mocha": "^2.4.5",
"nock": "^8.0.0",
"npm-check-updates": "2.6.3",
"style-loader": "^0.13.0",
"supertest": "^1.1.0",
"url-loader": "^0.5.7",
"webpack": "^1.12.12"
}
}