-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.06 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
{
"name": "ta-pago-api",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "nodemon --ext ts --exec tsx src/server.ts",
"build": "tsc",
"start": "node dist/server.js",
"prisma:migrate": "prisma migrate dev",
"prisma:generate": "prisma generate"
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"dependencies": {
"@fastify/cors": "^10.0.2",
"@prisma/client": "^6.4.1",
"bcryptjs": "^3.0.2",
"cors": "^2.8.5",
"dayjs": "^1.11.13",
"dotenv": "^16.4.7",
"express": "^4.21.2",
"fastify": "^5.2.1",
"fastify-cors": "^6.1.0",
"fastify-multer": "^2.0.3",
"jsonwebtoken": "^9.0.2",
"multer": "^1.4.5-lts.1",
"prisma": "^6.4.0",
"zod": "^3.24.2"
},
"devDependencies": {
"@fastify/formbody": "^8.0.2",
"@fastify/multipart": "^9.0.3",
"@types/jsonwebtoken": "^9.0.8",
"@types/node": "^22.13.4",
"fastify-type-provider-zod": "^4.0.2",
"nodemon": "^3.1.9",
"tsx": "^4.19.3"
}
}