This repository has been archived by the owner on Mar 18, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.73 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
{
"name": "battle-royal-server",
"version": "1.0.0",
"description": "Server for a web-based browser battle royal game written for CS5410",
"main": "index.js",
"scripts": {
"start": "ts-node src/index.ts",
"build": "tsc -p ./tsconfig.json",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/WhiteAbeLincoln/battle-royal-server.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/WhiteAbeLincoln/battle-royal-server/issues"
},
"homepage": "https://github.com/WhiteAbeLincoln/battle-royal-server#readme",
"devDependencies": {
"@types/debug": "0.0.30",
"@types/express": "^4.11.1",
"@types/express-jwt": "0.0.39",
"@types/jsonwebtoken": "^7.2.6",
"@types/morgan": "^1.7.35",
"@types/multer": "^1.3.6",
"@types/node": "^8.0.29",
"@types/socket.io": "^1.4.33",
"@types/mathjs": "^3.20.0",
"tslint": "^5.9.1",
"tslint-config-standard": "^7.0.0"
},
"dependencies": {
"@types/multer": "^1.3.6",
"@types/present": "^1.0.0",
"body-parser": "^1.18.2",
"class-transformer": "^0.1.9",
"class-validator": "^0.8.5",
"cors": "^2.8.4",
"debug": "^3.1.0",
"express": "^4.16.3",
"jsonwebtoken": "^8.2.0",
"mathjs": "^4.1.2",
"morgan": "^1.9.0",
"multer": "^1.3.0",
"present": "^1.0.0",
"reflect-metadata": "^0.1.10",
"routing-controllers": "^0.7.7",
"rxjs": "^5.5.8",
"socket.io": "^2.1.0",
"sqlite3": "^3.1.13",
"typeorm": "0.1.20",
"typescript-require": "^0.2.10",
"ts-node": "^3.3.0",
"typescript": "^2.8.1"
}
}