-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
56 lines (56 loc) · 1.51 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
{
"name": "backend-whyapp",
"version": "1.0.0",
"author": {
"name": "Lestter Gabriel (https://github.com/LestterX)",
"url": "https://www.linkedin.com/in/lestter-gabriel-93390218a/"
},
"engines": {
"node": "20.x.x"
},
"prisma": {
"schema": "src/server/database/schema.prisma",
"migrations": "src/server/database/migrations"
},
"main": "index.js",
"license": "MIT",
"scripts": {
"postinstall": "tsc",
"build": "npm install",
"start": "node build/src/index.js",
"dev": "ts-node-dev --respawn --transpile-only src/index.ts"
},
"dependencies": {
"@prisma/client": "^5.5.2",
"bcrypt": "^5.1.1",
"body-parser": "^1.20.2",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"express-session": "^1.17.3",
"helmet": "^7.1.0",
"http-status-codes": "^2.3.0",
"jsonwebtoken": "^9.0.2",
"multer": "^1.4.5-lts.1",
"socket.io": "^4.7.2",
"ts-node-dev": "^2.0.0",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/bcrypt": "^5.0.2",
"@types/body-parser": "^1.19.5",
"@types/cors": "^2.8.16",
"@types/express": "^4.17.21",
"@types/express-session": "^1.17.10",
"@types/helmet": "^4.0.0",
"@types/http-status-codes": "^1.2.0",
"@types/jsonwebtoken": "^9.0.5",
"@types/multer": "^1.4.10",
"@types/socket.io": "^3.0.2",
"@typescript-eslint/eslint-plugin": "^6.10.0",
"@typescript-eslint/parser": "^6.10.0",
"eslint": "^8.53.0",
"prisma": "^5.5.2",
"typescript": "^5.2.2"
}
}