-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 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
47
48
49
50
51
52
53
54
55
{
"name": "ex-server",
"version": "1.0.0",
"main": "index.ts",
"scripts": {
"dev": "nodemon index.ts",
"test": "jest --detectOpenHandles"
},
"keywords": [
"expressjs",
"postgreSQL",
"prisma",
"server",
"nodejs",
"typescript",
"jest",
"testing",
"http"
],
"author": "Yasser SAIDI",
"license": "ISC",
"description": "",
"dependencies": {
"@prisma/client": "^5.18.0",
"bcryptjs": "^2.4.3",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"express-rate-limit": "^7.4.0",
"express-validator": "^7.2.0",
"form-data": "^4.0.0",
"formidable": "^3.5.1",
"jimp": "^0.22.12",
"jsonwebtoken": "^9.0.2",
"pg": "^8.12.0",
"prisma": "^5.18.0",
"resend": "^4.0.0",
"uuid": "^10.0.0"
},
"devDependencies": {
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/formidable": "^3.4.5",
"@types/jest": "^29.5.12",
"@types/supertest": "^6.0.2",
"@types/uuid": "^10.0.0",
"jest": "^29.7.0",
"nodemon": "^3.1.4",
"supertest": "^7.0.0",
"ts-jest": "^29.2.5",
"ts-node-dev": "^2.0.0",
"typescript": "^5.5.4"
}
}