-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
67 lines (67 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
59
60
61
62
63
64
65
66
67
{
"name": "chat_app",
"version": "0.0.1",
"description": "",
"main": "dist/app.js",
"scripts": {
"prebuild": "tslint -c tslint.json -p tsconfig.json --fix",
"build": "tsc",
"prestart": "npm run build",
"down": "db-migrate down --env pg",
"up": "db-migrate up --env pg",
"start:dev": "nodemon --config nodemon.json src/app.ts",
"start": "node .",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Bekhx/chat_app.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Bekhx/chat_app/issues"
},
"homepage": "https://github.com/Bekhx/chat_app#readme",
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/express": "^4.17.13",
"@types/jest": "^29.1.1",
"@types/jsonwebtoken": "^8.5.9",
"@types/morgan": "^1.9.3",
"@types/node": "^17.0.18",
"@types/pg": "^8.6.5",
"@types/supertest": "^2.0.12",
"@types/swagger-ui-express": "^4.1.3",
"@types/uuid": "^8.3.4",
"jest": "^29.1.2",
"nodemon": "^2.0.15",
"supertest": "^6.3.0",
"ts-jest": "^29.0.3",
"ts-node": "^10.5.0",
"tslint": "^6.1.3",
"typescript": "^4.5.5"
},
"dependencies": {
"@redis/client": "^1.1.1",
"bcrypt": "^5.0.1",
"cors": "^2.8.5",
"db-migrate": "^0.11.13",
"db-migrate-pg": "^1.2.2",
"dotenv": "^16.0.0",
"express": "^4.17.3",
"express-joi-validation": "^5.0.1",
"http-status-codes": "^2.2.0",
"joi": "^17.6.0",
"jsonwebtoken": "^8.5.1",
"morgan": "^1.10.0",
"pg": "^8.7.3",
"redis": "^3.0.0",
"socket.io": "^4.4.1",
"swagger-ui-express": "^4.5.0",
"ts-node": "^10.5.0",
"typescript": "^4.5.5",
"uuid": "^8.3.2"
}
}