-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.99 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.99 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
{
"name": "user-feedback",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint",
"seed": "ts-node --project tsconfig.seed.json prisma/seed.ts",
"test": "vitest run",
"test:watch": "vitest",
"test:unit": "vitest run src/__tests__/unit",
"test:integration": "vitest run src/__tests__/integration",
"test:coverage": "vitest run --coverage",
"widget:build": "vite build --config vite.widget.config.ts",
"widget:dev": "vite build --config vite.widget.config.ts --watch"
},
"prisma": {
"seed": "ts-node --project tsconfig.seed.json prisma/seed.ts"
},
"dependencies": {
"@base-ui/react": "^1.3.0",
"@prisma/client": "^5.22.0",
"@upstash/ratelimit": "^2.0.8",
"@upstash/redis": "^1.37.0",
"bcryptjs": "^3.0.3",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"date-fns": "^4.1.0",
"lucide-react": "^0.577.0",
"nanoid": "^5.1.6",
"next": "16.1.6",
"next-auth": "^5.0.0-beta.30",
"next-themes": "^0.4.6",
"prisma": "^5.22.0",
"react": "19.2.3",
"react-dom": "19.2.3",
"recharts": "^3.8.0",
"resend": "^6.9.3",
"shadcn": "^4.0.7",
"sonner": "^2.0.7",
"tailwind-merge": "^3.5.0",
"tw-animate-css": "^1.4.0",
"zod": "^4.3.6",
"zustand": "^5.0.11"
},
"devDependencies": {
"@tailwindcss/postcss": "^4",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/bcryptjs": "^2.4.6",
"@types/jsdom": "^28.0.0",
"@types/node": "^20.19.37",
"@types/react": "^19",
"@types/react-dom": "^19",
"@vitejs/plugin-react": "^6.0.1",
"@vitest/coverage-v8": "^4.1.0",
"dotenv": "^17.3.1",
"eslint": "^9",
"eslint-config-next": "16.1.6",
"jest-axe": "^10.0.0",
"jsdom": "^29.0.0",
"tailwindcss": "^4",
"ts-node": "^10.9.2",
"typescript": "^5",
"vite-tsconfig-paths": "^6.1.1",
"vitest": "^4.1.0"
}
}