-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.43 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.43 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
{
"name": "clarity-kit",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "next dev -p 3002",
"build": "prisma generate && next build",
"start": "next start -p 3002",
"lint": "next lint",
"test": "vitest run",
"seed:test-cases": "npx ts-node scripts/seed-test-cases.ts"
},
"dependencies": {
"@prisma/client": "^5.22.0",
"@radix-ui/react-dialog": "^1.0.5",
"@radix-ui/react-progress": "^1.0.3",
"@radix-ui/react-select": "^2.0.0",
"@radix-ui/react-slot": "^1.0.2",
"@radix-ui/react-tabs": "^1.0.4",
"autoprefixer": "^10.4.17",
"bcryptjs": "^3.0.3",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.0",
"framer-motion": "^11.0.8",
"html2canvas": "^1.4.1",
"jspdf": "^4.1.0",
"lucide-react": "^0.344.0",
"nanoid": "^3.3.11",
"next": "14.2.5",
"next-auth": "^5.0.0-beta.30",
"nodemailer": "^8.0.1",
"postcss": "^8.4.35",
"prisma": "^5.22.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"recharts": "^2.12.2",
"tailwind-merge": "^2.2.1",
"tailwindcss": "^3.4.1",
"zustand": "^4.5.2"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@types/bcryptjs": "^2.4.6",
"@types/node": "^20.11.24",
"@types/nodemailer": "^7.0.10",
"@types/react": "^18.2.61",
"@types/react-dom": "^18.2.19",
"typescript": "^5.3.3",
"vitest": "^4.0.18"
}
}