forked from odota/core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
95 lines (95 loc) · 2.9 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": "3.1.0",
"main": "index.js",
"scripts": {
"start": "node index.js",
"dev": "nf -j Procfile.dev start",
"test": "rm -rf testfiles && git clone https://github.com/yasp-dota/testfiles && npm run build && istanbul cover _mocha --report lcovonly -- -R spec",
"coveralls": "cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage",
"update": "npm-check-updates -u -f '/^((?!steam).)*$/'",
"constants": "node runner.js constants",
"webpack": "webpack -p",
"watch": "webpack --watch",
"maven": "mvn -q -f parser/pom.xml clean install -U",
"build": "npm install && npm run maven && npm run webpack && npm run constants",
"startup": "sudo pm2 startup ubuntu -u yasp",
"deploy-core": "pm2 startOrReload pm2-core.json",
"deploy-parser": "git pull origin master && npm run build && pm2 startOrRestart pm2-parser.json"
},
"repository": {
"type": "git",
"url": "http://github.com/yasp-dota/yasp"
},
"dependencies": {
"async": "1.4.0",
"big-number": "0.3.1",
"body-parser": "1.13.3",
"bootstrap": "^3.3.5",
"bootswatch": "^3.3.5",
"c3": "^0.4.10",
"cal-heatmap": "^3.5.2",
"compression": "^1.5.2",
"connect-redis": "^2.4.1",
"cookie-session": "^1.2.0",
"d3": "^3.5.6",
"datatables": "^1.10.7",
"datatables-bootstrap3-plugin": "^0.4.0",
"dota2": "yasp-dota/node-dota2",
"dota2-minimap-hero-sprites": "~1.0.1",
"dotenv": "^1.2.0",
"express": "~4.13.3",
"express-session": "~1.11.3",
"font-awesome": "^4.4.0",
"foreman": "~1.4.1",
"heatmap.js": "~2.0.1",
"http-auth": "~2.2.8",
"http-proxy": "^1.11.1",
"jade": "~1.11.0",
"jquery": "^2.1.4",
"kue": "~0.9.4",
"moment": "^2.10.6",
"monk": "1.0.1",
"ndjson": "^1.4.1",
"numeral": "^1.5.3",
"parse-redis-url": "0.0.2",
"passport": "0.2.2",
"passport-steam": "0.1.5",
"paypal-rest-sdk": "~1.6",
"pm2": "^0.14.6",
"poet": "~2.0.1",
"qTip2": "yasp-dota/qtip2",
"redis": "0.12.1",
"request": "~2.60.0",
"request-progress": "^0.3.1",
"select2": "^4.0.0",
"select2-bootstrap-theme": "select2/select2-bootstrap-theme",
"selectize": "^0.12.1",
"sentiment": "^1.0.2",
"socket.io": "^1.3.6",
"socket.io-client": "^1.3.6",
"steam": "0.6.8",
"winston": "1.0.1",
"wordcloud": "1.0.1"
},
"devDependencies": {
"coveralls": "2.11.3",
"css-loader": "^0.15.6",
"database-cleaner": "~0.10.0",
"file-loader": "^0.8.4",
"istanbul": "~0.3.17",
"json-loader": "^0.5.2",
"mocha": "~2.2.5",
"mongodb": "~2.0.40",
"nock": "~2.10.0",
"nodemon": "^1.4.0",
"style-loader": "^0.12.3",
"supertest": "^1.0.1",
"url-loader": "^0.5.6",
"webpack": "^1.11.0"
},
"engines": {
"node": ">= 0.12.0"
}
}