-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.29 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
{
"name": "civic-track",
"version": "1.0.0",
"description": "",
"main": "index.ts",
"author": "Adetayo Adewobi",
"license": "MIT",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start:dev": "ts-node-dev --respawn --transpile-only ./src/index",
"start": "ts-node --transpile-only src/index.ts",
"build": "tsc && yarn prisma generate",
"migrate": "prisma migrate deploy"
},
"devDependencies": {
"@types/cors": "^2.8.17",
"@types/express": "^5.0.0",
"@types/node": "^22.8.0",
"@vercel/node": "^3.2.24",
"prisma": "^5.22.0",
"prisma-dbml-generator": "^0.12.0",
"ts-node": "^10.9.2",
"typescript": "^5.6.3"
},
"dependencies": {
"@prisma/client": "^5.21.1",
"@types/multer": "^1.4.12",
"bcrypt": "^5.1.1",
"cloudinary": "^2.5.1",
"cors": "^2.8.5",
"dayjs": "^1.11.13",
"dotenv": "^16.4.5",
"express": "^4.21.1",
"express-rate-limit": "^7.4.1",
"google-auth-library": "^9.14.2",
"jsonwebtoken": "^9.0.2",
"mailgen": "^2.0.28",
"multer": "^1.4.5-lts.1",
"nodemailer": "^6.9.15",
"pino": "^9.5.0",
"pino-pretty": "^11.3.0",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.1",
"ts-node-dev": "^2.0.0",
"uuid": "^10.0.0",
"zod": "^3.23.8"
}
}