-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 878 Bytes
/
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
{
"name": "bakku",
"version": "0.3.0",
"description": "An automation tool for database backups",
"main": "src/http/server.ts",
"scripts": {
"start:dev": "tsx watch src/http/server.ts",
"start:prod": "tsx src/http/server.ts",
"biome:format": "biome format --write ./src"
},
"keywords": [],
"author": "Kleyson Carreira",
"license": "MIT License",
"dependencies": {
"@fastify/cors": "^10.0.2",
"@fastify/swagger": "^9.4.2",
"@fastify/swagger-ui": "^5.2.1",
"@prisma/client": "^6.2.1",
"dayjs": "^1.11.13",
"dotenv": "^16.4.7",
"fastify": "^5.2.1",
"fastify-type-provider-zod": "^4.0.2",
"node-cron": "^3.0.3",
"pino-pretty": "^13.0.0",
"tsx": "^4.19.2",
"zod": "^3.24.1"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@types/node": "^22.10.7",
"@types/node-cron": "^3.0.11",
"prisma": "^6.2.1",
"typescript": "^5.7.3"
}
}