-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.71 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 loc) · 1.71 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
52
53
54
{
"type": "module",
"scripts": {
"build": "tsc --noEmit && next build && cp -r public .next/standalone/ && cp -r .next/static .next/standalone/.next/",
"clean": "rm -r .next/",
"db:migrate": "pnpm prisma migrate deploy",
"dev": "docker compose up -d --wait && prisma migrate deploy && next dev;docker compose down",
"format": "prettier --write --list-different .",
"format:check": "prettier --check .",
"postinstall": "(copy-env-cli || true) && (prisma generate || true)",
"lint": "eslint",
"start": "node .next/standalone/server.js",
"test": "vitest --passWithNoTests"
},
"dependencies": {
"@prisma/adapter-pg": "^7.7.0",
"@prisma/client": "^7.7.0",
"@t3-oss/env-nextjs": "^0.13.11",
"dotenv": "^17.4.2",
"gammait": "^1.0.3",
"jose": "^6.2.3",
"lucide-react": "^1.8.0",
"next": "16.2.4",
"prisma": "^7.7.0",
"react": "19.2.4",
"react-dom": "19.2.4",
"react-is": "19.2.4",
"recharts": "^3.8.1",
"vaul": "^1.1.2",
"zod": "^4.4.3"
},
"devDependencies": {
"@ianvs/prettier-plugin-sort-imports": "^4.7.1",
"@tailwindcss/postcss": "^4",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"copy-env-cli": "^1.0.0",
"dotenv-cli": "^11.0.0",
"eslint": "^9",
"eslint-config-next": "16.2.4",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-no-commented-code": "^1.0.10",
"prettier": "^3.8.3",
"prettier-plugin-packagejson": "^3.0.2",
"prettier-plugin-prisma": "^5.0.0",
"prettier-plugin-tailwindcss": "0.0.0-insiders.f7d2598",
"tailwindcss": "^4",
"tsx": "^4.21.0",
"typescript": "^5",
"vitest": "^4.1.4"
},
"packageManager": "pnpm@10.33.0"
}