-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.39 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
{
"name": "game-starter-b15-server",
"version": "1.0.0",
"main": "target/index.js",
"private": true,
"scripts": {
"start": "nodemon .",
"build": "tsc",
"test": "node_modules/.bin/mocha --require ts-node/register src/**/*.spec.ts",
"watch": "node_modules/.bin/tsc -w",
"compile": "node_modules/.bin/tsc -p .",
"postinstall": "yarn tsc"
},
"dependencies": {
"@slack/client": "^4.4.0",
"@types/bcrypt": "^2.0.0",
"@types/jsonwebtoken": "^7.2.8",
"@types/koa": "^2.0.46",
"@types/koa-bodyparser": "^5.0.1",
"@types/koa-multer": "^1.0.0",
"@types/koa-router": "^7.0.30",
"@types/mocha": "^2.2.48",
"@types/moment": "^2.13.0",
"@types/socket.io": "^1.4.32",
"@types/superagent": "^3.8.3",
"bcrypt": "^3.0.0",
"crypto": "^1.0.1",
"dotenv": "^6.0.0",
"jsonwebtoken": "^8.3.0",
"kcors": "^2.2.2",
"koa": "^2.5.2",
"koa-bodyparser": "^4.2.1",
"koa-multer": "^1.0.2",
"koa-router": "^7.4.0",
"mocha": "^5.0.4",
"moment": "^2.22.2",
"node-cron": "^1.2.1",
"nodemon": "^1.18.3",
"pg": "^7.4.3",
"randomstring": "^1.1.5",
"routing-controllers": "^0.7.7",
"slackbots": "^1.1.0",
"socket-controllers": "^0.0.3",
"socket.io": "^2.0.4",
"socketio-jwt-auth": "^0.0.6",
"superagent": "^3.8.3",
"ts-node": "^7.0.0",
"typeorm": "^0.2.7",
"typescript": "^2.9.2"
}
}