-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 921 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 921 Bytes
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
{
"name": "db-backups",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"db:migrate": "bun run src/lib/db/migrate.ts"
},
"dependencies": {
"next": "^16.0.3",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-hook-form": "^7.53.0",
"zod": "^3.23.8",
"@hookform/resolvers": "^3.9.0",
"date-fns": "^4.1.0",
"node-cron": "^3.0.3",
"@aws-sdk/client-s3": "^3.668.0",
"@aws-sdk/lib-storage": "^3.668.0",
"winston": "^3.15.0",
"nanoid": "^5.0.8",
"clsx": "^2.1.1"
},
"devDependencies": {
"@types/node": "^22.8.6",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"@types/node-cron": "^3.0.11",
"typescript": "^5.6.3",
"tailwindcss": "^4.0.0-alpha.30",
"eslint": "^9.14.0",
"eslint-config-next": "^16.0.3"
}
}