This repository has been archived by the owner on Dec 20, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 2.14 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
{
"name": "@tf2pickuppl/server",
"version": "1.0.0",
"description": "tf2pickup.pl server",
"main": "index.js",
"scripts": {
"build": "tsc",
"dev": "ts-node-dev src/index.ts",
"start": "forever start ./dist/index.js",
"prod": "npm run build && npm run start",
"test": "JASMINE_CONFIG_PATH=jasmine.json jasmine-ts"
},
"keywords": [
"tf2"
],
"author": "Michał Garapich <garrappachc@gmail.com>",
"license": "MIT",
"dependencies": {
"@typegoose/typegoose": "^6.1.5",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"discord.js": "^11.5.1",
"express": "^4.17.1",
"gamedig": "^2.0.20",
"generate-password": "^1.4.2",
"inversify": "^5.0.1",
"inversify-binding-decorators": "^4.0.0",
"inversify-express-utils": "^6.3.2",
"inversify-inject-decorators": "^3.1.0",
"lodash": "^4.17.15",
"mongodb": "^3.3.5",
"mongoose": "^5.7.11",
"nodemon": "^2.0.0",
"passport": "^0.4.0",
"passport-jwt": "^4.0.0",
"passport-steam": "^1.0.12",
"prettyjson": "^1.2.1",
"rcon-client": "^4.2.0",
"reflect": "^0.1.3",
"reflect-metadata": "^0.1.13",
"request": "^2.88.0",
"request-promise": "^4.2.5",
"socket.io": "^2.3.0",
"socketio-jwt-auth": "^0.1.0",
"srcds-log-receiver": "^1.0.0",
"winston": "^3.2.1"
},
"devDependencies": {
"@types/cors": "^2.8.6",
"@types/express": "^4.17.2",
"@types/gamedig": "^1.0.0",
"@types/jasmine": "^3.5.0",
"@types/lodash": "^4.14.148",
"@types/mongodb": "^3.3.10",
"@types/mongoose": "^5.5.32",
"@types/passport": "^1.0.1",
"@types/passport-jwt": "^3.0.3",
"@types/passport-steam": "^1.0.1",
"@types/prettyjson": "0.0.29",
"@types/request": "^2.48.3",
"@types/request-promise": "^4.1.44",
"@types/socket.io": "^2.1.4",
"@types/socketio-jwt-auth": "0.0.0",
"@types/winston": "^2.4.4",
"forever": "^1.0.0",
"jasmine": "^3.5.0",
"jasmine-core": "^3.5.0",
"jasmine-ts": "^0.3.0",
"mongodb-memory-server": "^6.0.1",
"ts-node-dev": "^1.0.0-pre.44",
"tslint": "^5.20.1",
"tslint-no-circular-imports": "^0.7.0",
"typescript": "^3.7.2"
}
}