-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
45 lines (45 loc) · 1.17 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
{
"name": "game-starter-b15-server",
"version": "1.0.0",
"engine": {
"node": "11.9.0"
},
"main": "target/index.js",
"private": true,
"scripts": {
"start": "node .",
"postinstall": "tsc -p .",
"dev": "nodemon .",
"test": "node_modules/.bin/mocha --require ts-node/register src/**/*.spec.ts",
"watch": "node_modules/.bin/tsc -w",
"compile": "node_modules/.bin/tsc -p ."
},
"dependencies": {
"@koa/cors": "^2.2.3",
"@types/bcrypt": "^1.0.0",
"@types/jsonwebtoken": "^7.2.6",
"@types/koa": "^2.0.44",
"@types/koa-bodyparser": "^4.2.0",
"@types/koa-multer": "^1.0.0",
"@types/koa-router": "^7.0.27",
"@types/mocha": "^2.2.48",
"@types/socket.io": "^1.4.32",
"bcrypt": "^3.0.4",
"jsonwebtoken": "^8.2.0",
"kcors": "^2.2.2",
"koa": "^2.5.0",
"koa-bodyparser": "^4.2.0",
"koa-multer": "^1.0.2",
"koa-router": "^7.4.0",
"mocha": "^5.0.4",
"nodemon": "^1.18.10",
"pg": "^7.4.1",
"routing-controllers": "^0.7.7",
"socket.io": "^2.0.4",
"socketio-jwt-auth": "^0.0.6",
"ts-node": "^5.0.1",
"typeorm": "0.1.19",
"typescript": "^2.7.2",
"uws": "^99.0.0"
}
}