-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.18 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
{
"name": "bilious",
"version": "0.0.1",
"description": "TF2Stadium blitz-tournament organizer API server",
"main": "index.js",
"scripts": {
"start": "node bin/server",
"start:dev": "nodemon bin/server",
"build": "rm -rf dist;babel --source-maps=inline --out-dir dist src",
"build:watch": "npm run build -- -w",
"lint": "eslint --cache src/**.js bin/**.js",
"test": "echo \"Error: no test specified\""
},
"keywords": [
"TF2Stadium",
"TF2",
"tournament",
"API",
"server"
],
"author": "TF2Stadium",
"license": "GPL-3.0",
"dependencies": {
"babel-polyfill": "6.26.0",
"body-parser": "1.17.2",
"cookie-parser": "1.4.3",
"debug": "3.0.1",
"express": "4.15.4",
"express-jwt": "5.3.0",
"ineedthis": "0.0.8",
"localenv": "0.2.2",
"morgan": "1.8.2",
"pg": "7.2.0",
"ramda": "0.24.1",
"srcds-rcon": "2.2.1"
},
"devDependencies": {
"babel-cli": "6.26.0",
"babel-eslint": "7.2.3",
"babel-preset-env": "1.6.0",
"eslint": "4.6.0",
"nodemon": "1.11.0",
"source-map-support": "0.4.16"
},
"repository": {
"type": "git",
"url": "https://github.com/TF2Stadium/bilious"
}
}