-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.96 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 1.96 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
{
"name": "scopestack",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"prisma:generate": "prisma generate",
"prisma:migrate": "prisma migrate dev",
"prisma:push": "prisma db push",
"prisma:studio": "prisma studio",
"seed": "tsx prisma/seed.ts",
"seed:if-empty": "tsx prisma/seed-if-empty.ts",
"screenshots:workflow": "tsx scripts/capture-workflow-screenshots.ts",
"test": "vitest run",
"test:watch": "vitest",
"postinstall": "prisma generate || true"
},
"engines": {
"node": ">=20.9.0"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.1046.0",
"@prisma/client": "^5.22.0",
"@tiptap/extension-link": "^2.10.3",
"@tiptap/extension-placeholder": "^2.10.3",
"@tiptap/pm": "^2.10.3",
"@tiptap/react": "^2.10.3",
"@tiptap/starter-kit": "^2.10.3",
"@trigger.dev/sdk": "^4.4.6",
"@types/qrcode": "^1.5.6",
"better-auth": "^1.6.11",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"isomorphic-dompurify": "^2.19.0",
"lucide-react": "^0.468.0",
"next": "^16.2.6",
"nodemailer": "^8.0.7",
"pdfjs-dist": "^5.7.284",
"qrcode": "^1.5.4",
"react": "^19.2.6",
"react-dom": "^19.2.6",
"resend": "^4.0.1",
"tailwind-merge": "^2.5.5",
"zod": "^3.24.1"
},
"devDependencies": {
"@playwright/browser-chromium": "^1.49.1",
"@trigger.dev/build": "^4.4.6",
"@types/node": "^22.10.2",
"@types/nodemailer": "^8.0.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"autoprefixer": "^10.4.20",
"eslint": "^9.39.4",
"eslint-config-next": "^16.2.6",
"playwright": "^1.49.1",
"postcss": "^8.5.14",
"prisma": "^5.22.0",
"tailwindcss": "^3.4.17",
"tsx": "^4.19.2",
"typescript": "^5.7.2",
"vitest": "^4.1.6"
},
"overrides": {
"postcss": "^8.5.14"
}
}