-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 944 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
{
"name": "chat-app",
"version": "1.0.0",
"main": "dist/index.js",
"scripts": {
"start": "NODE_ENV=local ts-node chat/src/Server.ts"
},
"dependencies": {
"@fastify/cors": "^10.0.1",
"@fastify/swagger": "^9.4.0",
"@fastify/swagger-ui": "^5.2.0",
"aws-sdk": "^2.1692.0",
"axios": "^1.7.9",
"dotenv": "^16.4.5",
"fastify": "^5.2.0",
"fastify-plugin": "^5.0.1",
"glob": "^10.4.5",
"jsonwebtoken": "^9.0.2",
"kleur": "^4.1.5",
"mongodb": "^5.9.2",
"mysql2": "^3.11.5",
"reflect-metadata": "^0.2.2",
"typeorm": "^0.3.20",
"winston": "^3.17.0"
},
"devDependencies": {
"@types/jsonwebtoken": "^9.0.7",
"@types/node": "^22.10.1",
"@types/uuid": "^10.0.0",
"@types/winston": "^2.4.4",
"ts-node": "^10.9.2",
"typescript": "^5.7.2"
}
}