-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.79 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 1.79 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
{
"name": "lineage",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"dev:host": "next dev -H 0.0.0.0",
"build": "next build",
"start": "next start",
"lint": "next lint",
"typecheck": "tsc --noEmit",
"db:generate": "prisma generate",
"db:push": "prisma db push",
"db:migrate": "prisma migrate dev",
"db:seed": "tsx prisma/seed.ts",
"db:studio": "prisma studio",
"test": "vitest run",
"test:watch": "vitest",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"job:worker": "tsx src/server/jobs/worker.ts",
"deploy": "node scripts/deploy-ghpages.js"
},
"dependencies": {
"@prisma/client": "^5.22.0",
"@react-pdf/renderer": "^3.4.4",
"@sentry/nextjs": "^8.45.0",
"@tanstack/react-query": "^5.59.0",
"@aws-sdk/client-s3": "^3.700.0",
"@aws-sdk/s3-request-presigner": "^3.700.0",
"argon2": "^0.41.1",
"lucide-react": "^0.460.0",
"next": "14.2.18",
"pino": "^9.5.0",
"pino-pretty": "^11.3.0",
"pg-boss": "^10.0.6",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"superjson": "^2.2.1",
"zod": "^3.23.8",
"@trpc/server": "^11.0.0-rc.600",
"@trpc/client": "^11.0.0-rc.600",
"@trpc/react-query": "^11.0.0-rc.600",
"@trpc/next": "^11.0.0-rc.600"
},
"devDependencies": {
"cross-env": "^7.0.3",
"gh-pages": "^6.1.1",
"@playwright/test": "^1.49.0",
"@types/node": "^22.9.0",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"autoprefixer": "^10.4.20",
"eslint": "^8.57.0",
"eslint-config-next": "14.2.18",
"postcss": "^8.4.49",
"prisma": "^5.22.0",
"tailwindcss": "^3.4.15",
"tsx": "^4.19.2",
"typescript": "^5.6.3",
"vitest": "^2.1.4",
"@vitejs/plugin-react": "^4.3.3"
}
}