-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
108 lines (108 loc) · 3.36 KB
/
package.json
File metadata and controls
108 lines (108 loc) · 3.36 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
105
106
107
108
{
"name": "britepool",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "prisma generate && eslint . --fix && NODE_OPTIONS='--max-old-space-size=1536' next build",
"start": "next start",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"typecheck": "tsc --noEmit",
"test": "vitest",
"test:ui": "vitest --ui",
"test:run": "vitest run",
"test:coverage": "vitest run --coverage",
"test:watch": "vitest --watch",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"test:e2e:headed": "playwright test --headed",
"validate": "npm run typecheck && npm run lint && npm run test:run",
"prepare": "husky",
"killall": "bash scripts/killall.sh",
"restart": "npm run killall && npm run dev -- -p 5000 -H 0.0.0.0",
"db:generate": "prisma generate",
"db:push": "prisma db push",
"db:migrate": "prisma migrate dev",
"db:studio": "prisma studio",
"db:seed": "npx tsx prisma/seed.ts",
"postinstall": "prisma generate"
},
"prisma": {
"seed": "npx tsx prisma/seed.ts"
},
"engines": {
"node": ">=22.0.0"
},
"dependencies": {
"@anthropic-ai/claude-code": "^2.1.19",
"@prisma/client": "^5.22.0",
"@radix-ui/react-avatar": "^1.1.11",
"@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-toast": "^1.2.15",
"@stripe/stripe-js": "^8.6.0",
"@tiptap/extension-character-count": "^3.20.4",
"@tiptap/extension-link": "^3.20.4",
"@tiptap/extension-placeholder": "^3.20.4",
"@tiptap/extension-text-align": "^3.20.4",
"@tiptap/extension-underline": "^3.20.4",
"@tiptap/pm": "^3.20.4",
"@tiptap/react": "^3.20.4",
"@tiptap/starter-kit": "^3.20.4",
"@types/bcryptjs": "^2.4.6",
"bcryptjs": "^3.0.3",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"lucide-react": "^0.562.0",
"next": "^15.1.0",
"next-auth": "^5.0.0-beta.30",
"next-themes": "^0.4.6",
"pino": "^10.1.0",
"pino-pretty": "^13.1.3",
"prisma": "^5.22.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-markdown": "^10.1.0",
"resend": "^6.6.0",
"sanitize-html": "^2.17.2",
"sonner": "^2.0.7",
"stripe": "^20.1.0",
"tailwind-merge": "^3.4.0",
"tailwindcss-animate": "^1.0.7",
"tsx": "^4.21.0",
"tus-js-client": "^4.3.1",
"zod": "^4.2.1"
},
"devDependencies": {
"@playwright/test": "^1.57.0",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.1",
"@testing-library/user-event": "^14.6.1",
"@types/node": "^22.0.0",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"@types/sanitize-html": "^2.16.1",
"@vitejs/plugin-react": "^5.1.2",
"autoprefixer": "^10.4.0",
"c8": "^10.1.3",
"dotenv": "^17.2.3",
"eslint": "^9.39.2",
"eslint-config-next": "^16.1.0",
"husky": "^9.1.7",
"jsdom": "^27.3.0",
"lint-staged": "^16.2.7",
"playwright": "^1.57.0",
"postcss": "^8.4.0",
"prettier": "^3.7.4",
"tailwindcss": "^3.4.0",
"typescript": "^5.6.0",
"vitest": "^4.0.16"
}
}