-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
104 lines (104 loc) · 2.97 KB
/
package.json
File metadata and controls
104 lines (104 loc) · 2.97 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
100
101
102
103
104
{
"name": "maindeck",
"version": "0.1.0",
"private": true,
"packageManager": "pnpm@10.33.0",
"engines": {
"node": ">=22.0.0"
},
"scripts": {
"dev": "next dev",
"wf:dev": "pnpm workflow web",
"postinstall": "prisma generate",
"build": "next build",
"analyze": "ANALYZE=true next build",
"start": "next start",
"lint": "eslint",
"lint:fix": "eslint . --fix",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"test:integration": "vitest run --config vitest.integration.config.ts",
"db:up": "docker compose up -d postgres",
"db:down": "docker compose down",
"redis:up": "docker compose up -d redis serverless-redis-http",
"db:generate": "prisma generate",
"db:migrate": "prisma migrate dev",
"db:migrate:deploy": "PGOPTIONS='-c lock_timeout=5s -c statement_timeout=600000ms' prisma migrate deploy",
"db:studio": "prisma studio"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.1045.0",
"@base-ui/react": "^1.4.1",
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/sortable": "^10.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@neondatabase/serverless": "^1.1.0",
"@prisma/adapter-neon": "^7.8.0",
"@prisma/adapter-pg": "^7.8.0",
"@prisma/client": "^7.8.0",
"@upstash/redis": "^1.38.0",
"@vercel/analytics": "^2.0.1",
"@vercel/blob": "^2.3.3",
"@vercel/speed-insights": "^2.0.0",
"better-auth": "^1.6.9",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cmdk": "^1.1.1",
"linkedom": "^0.18.12",
"lucide-react": "^1.14.0",
"mana-font": "^1.18.0",
"next": "16.2.6",
"next-themes": "^0.4.6",
"pg": "^8.20.0",
"react": "19.2.6",
"react-dom": "19.2.6",
"react-hotkeys-hook": "^5.3.2",
"resend": "^6.12.3",
"shadcn": "^4.7.0",
"stream-json": "^2.1.0",
"tailwind-merge": "^3.5.0",
"tw-animate-css": "^1.4.0",
"workflow": "^4.2.4",
"zod": "^4.4.3"
},
"devDependencies": {
"@next/bundle-analyzer": "^16.2.4",
"@tailwindcss/postcss": "^4.2.4",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/node": "^25.6.0",
"@types/pg": "^8.20.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@vitest/coverage-v8": "^4.1.5",
"@workflow/vitest": "4.0.5",
"babel-plugin-react-compiler": "^1.0.0",
"dotenv": "^17.4.2",
"eslint": "^9.39.4",
"eslint-config-next": "16.2.4",
"eslint-plugin-import": "^2.32.0",
"jsdom": "^29.1.1",
"prisma": "^7.8.0",
"tailwindcss": "^4.2.4",
"typescript": "^6.0.3",
"vitest": "^4.1.5",
"vitest-axe": "1.0.0-pre.5"
},
"pnpm": {
"onlyBuiltDependencies": [
"@nestjs/core",
"@prisma/engines",
"@swc/core",
"cbor-extract",
"esbuild",
"prisma"
],
"ignoredBuiltDependencies": [
"sharp",
"unrs-resolver"
]
}
}