This repository was archived by the owner on Jul 16, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.37 KB
/
Copy pathpackage.json
File metadata and controls
46 lines (46 loc) · 1.37 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
{
"name": "bufferdash",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev --hostname 127.0.0.1",
"build": "prisma generate && next build",
"start": "next start",
"lint": "eslint app components lib tests --max-warnings=0",
"test": "vitest run && python3 -m unittest discover -s tests -p 'host_agent_test.py'",
"typecheck": "tsc --noEmit",
"validate": "npm run lint && npm run typecheck && npm test && npm run build",
"prod:check": "scripts/production-check.sh",
"deploy": "scripts/deploy-production.sh",
"db:backup": "scripts/backup-postgres.sh",
"db:restore": "scripts/restore-postgres.sh",
"prisma:generate": "prisma generate",
"prisma:migrate": "prisma migrate dev",
"prisma:deploy": "prisma migrate deploy"
},
"dependencies": {
"@prisma/client": "^6.19.3",
"bcryptjs": "^3.0.2",
"nanoid": "^5.1.5",
"next": "^16.2.10",
"react": "^19.2.7",
"react-dom": "^19.2.7",
"recharts": "^3.0.2",
"systeminformation": "^5.25.11",
"ua-parser-js": "^2.0.3",
"zod": "^3.25.67"
},
"devDependencies": {
"@types/node": "^26.1.0",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
"eslint": "^9.39.1",
"eslint-config-next": "^16.2.10",
"prisma": "^6.19.3",
"typescript": "^6.0.3",
"vitest": "^3.2.7"
},
"overrides": {
"postcss": "8.5.10"
}
}