-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
61 lines (61 loc) · 1.58 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
{
"name": "asset-management-system-backend",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"migrate": "npx prisma migrate dev",
"start": "ts-node src/index.ts",
"dev": "nodemon --exec ts-node src/index.ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@prisma/client": "^5.7.0",
"@types/bcrypt": "^5.0.2",
"@types/express": "^4.17.21",
"@types/joi": "^17.2.3",
"@types/node": "^20.10.0",
"@types/passport": "^1.0.16",
"@types/passport-jwt": "^3.0.13",
"bcryptjs": "^2.4.3",
"compression": "^1.7.4",
"cors": "^2.8.5",
"express": "^4.18.2",
"express-rate-limit": "^7.1.5",
"helmet": "^7.1.0",
"http-status": "^1.7.3",
"joi": "^17.11.0",
"jsonwebtoken": "^9.0.2",
"moment": "^2.29.4",
"morgan": "^1.10.0",
"passport": "^0.7.0",
"passport-jwt": "^4.0.1",
"ts-node": "^10.9.1",
"winston": "^3.11.0",
"xss-filters": "^1.2.7"
},
"devDependencies": {
"@prisma/migrate": "^5.7.0",
"@types/nodemailer": "^6.4.14",
"@types/passport": "^1.0.16",
"@types/passport-jwt": "^3.0.13",
"@types/bcryptjs": "^2.4.6",
"@types/compression": "^1.7.5",
"@types/cors": "^2.8.17",
"@types/morgan": "^1.9.9",
"@types/xss-filters": "^0.0.30",
"dotenv": "^16.3.1",
"nodemon": "^3.0.1",
"prisma": "^5.7.0",
"typescript": "^5.3.2",
"joi": "^17.11.0",
"jsonwebtoken": "^9.0.2",
"nodemailer": "^6.9.7",
"passport": "^0.6.0",
"passport-jwt": "^4.0.1",
"pg": "^8.11.3",
"ts-node": "^10.9.1"
}
}