-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
99 lines (99 loc) · 2.71 KB
/
Copy pathpackage.json
File metadata and controls
99 lines (99 loc) · 2.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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "fisclink",
"version": "0.1.0",
"private": false,
"license": "MIT",
"packageManager": "pnpm@10.33.0",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint",
"test": "vitest run",
"test:watch": "vitest",
"doctor": "pnpm exec tsx scripts/doctor.ts",
"worker": "pnpm exec tsx src/lib/workers/start.ts",
"queue-board": "pnpm exec tsx src/lib/queue-board/start.ts",
"db:migrate": "pnpm exec prisma migrate deploy",
"db:migrate:dev": "pnpm exec prisma migrate dev",
"db:generate": "pnpm exec prisma generate",
"db:studio": "pnpm exec prisma studio",
"prepare": "husky"
},
"dependencies": {
"@bull-board/api": "^8.0.1",
"@bull-board/express": "^8.0.1",
"@prisma/adapter-pg": "^7.3.0",
"@prisma/client": "^7.3.0",
"@radix-ui/react-avatar": "^1.1.11",
"@radix-ui/react-checkbox": "^1.3.3",
"@radix-ui/react-collapsible": "^1.1.12",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-dropdown-menu": "^2.1.16",
"@radix-ui/react-label": "^2.1.8",
"@radix-ui/react-scroll-area": "^1.2.10",
"@radix-ui/react-select": "^2.2.6",
"@radix-ui/react-separator": "^1.1.8",
"@radix-ui/react-slot": "^1.2.4",
"@radix-ui/react-tabs": "^1.1.13",
"@radix-ui/react-tooltip": "^1.2.8",
"@types/pdfkit": "^0.17.4",
"bcryptjs": "^3.0.3",
"bullmq": "^5.67.3",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"date-fns": "^4.1.0",
"express": "^5.2.1",
"express-basic-auth": "^1.2.1",
"ioredis": "^5.9.2",
"jose": "^6.1.3",
"lucide-react": "^0.563.0",
"nanoid": "^5.1.6",
"next": "16.1.6",
"next-themes": "^0.4.6",
"pdfkit": "^0.17.2",
"pg": "^8.18.0",
"prisma": "^7.3.0",
"react": "19.2.3",
"react-dom": "19.2.3",
"resend": "^6.9.1",
"stripe": "20.3.1",
"tailwind-merge": "^3.5.0",
"zod": "^4.3.6"
},
"devDependencies": {
"@tailwindcss/postcss": "^4",
"@types/bcryptjs": "^2.4.6",
"@types/express": "^5.0.6",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"@vitest/coverage-v8": "^4.0.18",
"dotenv": "^16.4.7",
"eslint": "^9",
"eslint-config-next": "16.1.6",
"husky": "^9.1.7",
"lint-staged": "^17.0.7",
"tailwindcss": "^4",
"tsx": "^4.19.2",
"tw-animate-css": "^1.4.0",
"typescript": "^5",
"vitest": "^4.0.18"
},
"lint-staged": {
"*.{ts,tsx}": "eslint --fix --no-warn-ignored"
},
"pnpm": {
"overrides": {
"ioredis": "5.10.1"
},
"onlyBuiltDependencies": [
"@prisma/engines",
"prisma",
"sharp",
"msgpackr-extract",
"unrs-resolver",
"esbuild"
]
}
}