-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
46 lines (46 loc) · 1.19 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": "socket.io",
"version": "1.0.0",
"description": "ChatBreeze Backend",
"main": "index.ts",
"scripts": {
"dev": "ts-node index.ts",
"lint": "eslint",
"build": "tsc",
"start": "node dist/index.js",
"db:migrate": "NODE_PATH=dist/ node --env-file=.env dist/db/migration.js",
"prepare": "husky"
},
"author": "Swadhin Paul",
"license": "ISC",
"dependencies": {
"@prisma/client": "^5.17.0",
"@socket.io/mongo-adapter": "^0.3.2",
"@types/bcrypt": "^5.0.2",
"bcrypt": "^5.1.1",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"husky": "^9.1.7",
"nodemailer": "^6.9.13",
"prettier": "^3.3.2",
"randomstring": "^1.3.0",
"socket.io": "^4.7.5",
"ts-node": "^10.9.2",
"typescript": "^5.4.5"
},
"devDependencies": {
"@eslint/js": "^9.19.0",
"@types/express": "^4.17.21",
"@types/jsonwebtoken": "^9.0.6",
"@types/node": "^20.14.11",
"@types/nodemailer": "^6.4.15",
"@types/randomstring": "^1.3.0",
"@types/socket.io": "^3.0.2",
"@types/typescript": "^2.0.0",
"eslint": "^9.19.0",
"globals": "^15.14.0",
"prisma": "^5.16.1",
"typescript-eslint": "^8.22.0"
}
}