-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.32 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.32 KB
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
{
"name": "guests-api",
"version": "1.0.0",
"description": "Guests and Invitations API with Fastify, Prisma, and PostgreSQL",
"main": "dist/server.js",
"scripts": {
"dev": "tsx watch src/server.ts",
"build": "tsc",
"start": "node dist/server.js",
"test": "vitest",
"test:ui": "vitest --ui",
"test:run": "vitest run",
"prisma:generate": "prisma generate",
"prisma:migrate": "prisma migrate dev",
"prisma:studio": "prisma studio"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@fastify/cors": "^10.1.0",
"@fastify/helmet": "^12.0.1",
"@fastify/jwt": "^10.0.0",
"@fastify/rate-limit": "^10.3.0",
"@fastify/swagger": "^9.3.0",
"@fastify/swagger-ui": "^5.2.0",
"@prisma/client": "^6.2.0",
"@sinclair/typebox": "^0.33.0",
"bcrypt": "^6.0.0",
"dotenv": "^16.4.7",
"fastify": "^5.2.0",
"fastify-plugin": "^5.0.1",
"mercadopago": "^2.12.0",
"nodemailer": "^8.0.1",
"pino": "^9.5.0",
"pino-pretty": "^13.0.0"
},
"devDependencies": {
"@types/bcrypt": "^6.0.0",
"@types/node": "^22.10.2",
"@types/nodemailer": "^7.0.11",
"@vitest/ui": "^4.0.12",
"prisma": "^6.2.0",
"tsx": "^4.19.2",
"typescript": "^5.7.2",
"vitest": "^4.0.12"
},
"prisma": {
"seed": "node prisma/seed.js"
}
}