-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
46 lines (46 loc) · 1.3 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
{
"name": "kat-social-be",
"version": "1.0.0",
"description": "Social App IT KAT 2022 - Backend",
"main": "index.ts",
"scripts": {
"dev": "nodemon src/index.ts",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "gts lint",
"lint:clean": "gts clean",
"compile": "tsc",
"lint:fix": "gts fix",
"prepare": "npm.cmd run compile",
"pretest": "npm.cmd run compile",
"posttest": "npm.cmd run lint",
"typeorm": "typeorm-ts-node-commonjs"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@socket.io/redis-adapter": "^7.2.0",
"@types/redis": "^4.0.11",
"axios": "^0.27.2",
"config": "^3.3.7",
"express": "^4.18.1",
"jsonwebtoken": "^8.5.1",
"pg": "^8.4.0",
"redis": "^4.2.0",
"reflect-metadata": "^0.1.13",
"socket.io": "^4.5.1",
"typeorm": "0.3.7",
"uuid": "^8.3.2"
},
"devDependencies": {
"@types/config": "^0.0.41",
"@types/express": "^4.17.13",
"@types/node": "^16.11.10",
"@types/uuid": "^8.3.4",
"dotenv": "^16.0.1",
"gts": "^4.0.0",
"nodemon": "^2.0.19",
"ts-node": "10.7.0",
"typescript": "4.5.2"
}
}