-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.71 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.71 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
{
"name": "intelligent-forms",
"version": "2.0.1",
"private": true,
"description": "Intelligent Forms - Privacy-first, self-hosted form management system",
"author": "Jacques Nyilinkindi",
"license": "MIT",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"type-check": "tsc --noEmit",
"clean": "rm -rf .next node_modules",
"format": "prettier --write \"**/*.{ts,tsx,md,json}\"",
"db:generate": "prisma generate",
"db:push": "prisma db push",
"db:migrate": "prisma migrate dev",
"db:studio": "prisma studio",
"db:seed": "tsx prisma/seed.ts",
"prepare": "husky"
},
"dependencies": {
"@hookform/resolvers": "^3.3.3",
"@prisma/client": "^5.7.1",
"axios": "^1.6.2",
"bcryptjs": "^2.4.3",
"clsx": "^2.0.0",
"crypto-js": "^4.2.0",
"date-fns": "^3.0.6",
"jspdf": "^3.0.3",
"lucide-react": "^0.303.0",
"nanoid": "^5.0.4",
"next": "^14.0.4",
"next-auth": "^4.24.5",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hook-form": "^7.49.2",
"react-hot-toast": "^2.4.1",
"tailwind-merge": "^2.2.0",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.6",
"@types/crypto-js": "^4.2.1",
"@types/node": "^20.10.6",
"@types/react": "^18.2.46",
"@types/react-dom": "^18.2.18",
"autoprefixer": "^10.4.16",
"eslint": "^8.56.0",
"eslint-config-next": "^14.0.4",
"husky": "^9.1.7",
"postcss": "^8.4.32",
"prettier": "^3.1.1",
"prisma": "^5.7.1",
"tailwindcss": "^3.4.0",
"tsx": "^4.7.0",
"typescript": "^5.3.3"
},
"engines": {
"node": ">=18.0.0",
"npm": ">=9.0.0",
"pnpm": ">=8.0.0"
}
}