-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
82 lines (82 loc) · 2.04 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
76
77
78
79
80
81
82
{
"name": "sce-chat-server",
"version": "0.0.0",
"description": "",
"license": "ISC",
"scripts": {
"build": "tsc",
"prestart": "npm run build",
"start": "node build/index.js",
"test": "LOGS_LEVEL=error NODE_ENV=test jest --runInBand --force-exit"
},
"husky": {
"hooks": {
"pre-commit": "npm run test && lint-staged"
}
},
"lint-staged": {
"*.json": [
"prettier --write --loglevel error"
],
"*.{ts,tsx}": [
"prettier --write --loglevel error",
"eslint --quiet"
],
"package.json": [
"sort-package-json"
]
},
"dependencies": {
"@hapi/joi": "^17.1.1",
"convict": "^6.0.0",
"dotenv": "^8.2.0",
"jsonwebtoken": "^8.5.1",
"kcors": "^2.2.2",
"koa": "^2.12.0",
"koa-logger": "^3.2.1",
"lodash": "^4.17.15",
"mongoose": "^5.9.18",
"msgpack-lite": "^0.1.26",
"node-cache": "^5.1.1",
"socket.io": "^2.3.0",
"socket.io-client": "^2.3.0",
"tsc": "^1.20150623.0",
"tslib": "^2.0.0",
"uuid": "^8.1.0",
"wait-port": "^0.2.9",
"winston": "^3.2.1"
},
"devDependencies": {
"@koa/cors": "^3.1.0",
"@types/convict": "^5.2.1",
"@types/hapi__joi": "^17.1.2",
"@types/jest": "^25.2.2",
"@types/jsonwebtoken": "^8.5.0",
"@types/koa__cors": "^3.0.1",
"@types/lodash": "^4.14.155",
"@types/mongoose": "^5.7.24",
"@types/msgpack-lite": "^0.1.7",
"@types/socket.io": "^2.1.8",
"@types/socket.io-client": "^1.4.33",
"@types/socketio-wildcard": "^2.0.3",
"@types/uuid": "^8.0.0",
"@typescript-eslint/eslint-plugin": "^2.33.0",
"@typescript-eslint/parser": "^2.33.0",
"codecov": "^3.7.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-jest": "^23.13.1",
"husky": "^4.2.5",
"jest": "^26.0.1",
"lint-staged": "^10.2.9",
"prettier": "^2.0.5",
"sort-package-json": "^1.44.0",
"ts-jest": "^26.0.0",
"typescript": "^3.9.5",
"wait-for-expect": "^3.0.2"
},
"engines": {
"node": ">=14.2.0",
"npm": ">=6.0.0"
}
}