-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 983 Bytes
/
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
{
"name": "telehealth_chat_test",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "nodemon ./src/main.ts",
"start": "npm run build && node ./dist/src/main.js",
"start:prod": "node ./dist/src/main.js",
"build": "rm -rf ./dist && tsc"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"nodemon": "^3.1.7",
"prisma": "^5.22.0",
"ts-node": "^10.9.2",
"typescript": "^5.6.3"
},
"dependencies": {
"@fastify/cors": "^8.5.0",
"@fastify/swagger": "^8.15.0",
"@fastify/swagger-ui": "^2.1.0",
"@prisma/client": "^5.22.0",
"@socket.io/redis-adapter": "^8.3.0",
"@types/bcryptjs": "^2.4.6",
"@types/jsonwebtoken": "^9.0.7",
"bcryptjs": "^2.4.3",
"dotenv": "^16.4.5",
"fastify": "^4.28.1",
"fastify-socket.io": "^5.1.0",
"fluent-json-schema": "^5.0.0",
"ioredis": "^5.4.1",
"jsonwebtoken": "^9.0.2",
"socket.io": "^4.8.1"
}
}