-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.25 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.25 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
{
"name": "codeniwork",
"version": "1.4.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint --max-warnings 100 .",
"db:generate": "drizzle-kit generate",
"db:push": "drizzle-kit push",
"db:studio": "drizzle-kit studio",
"db:clear": "tsx scripts/clear-database.ts",
"db:seed": "tsx scripts/seed-database.ts",
"db:reset": "pnpm db:clear && pnpm db:seed",
"auto-reject": "tsx scripts/auto-reject-applications.ts",
"semantic-release": "semantic-release"
},
"dependencies": {
"@codenificient/analytics-sdk": "^1.1.0",
"@hookform/resolvers": "^5.2.2",
"@neondatabase/serverless": "^1.0.2",
"@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-icons": "^1.3.2",
"@radix-ui/react-label": "^2.1.8",
"@radix-ui/react-select": "^2.2.6",
"@radix-ui/react-slot": "^1.2.4",
"@radix-ui/react-tabs": "^1.1.13",
"@radix-ui/react-toast": "^1.2.15",
"@radix-ui/react-tooltip": "^1.2.8",
"@types/bcrypt": "^6.0.0",
"bcrypt": "^6.0.0",
"class-variance-authority": "^0.7.1",
"cloudinary": "^2.9.0",
"clsx": "^2.1.1",
"date-fns": "^4.1.0",
"dotenv": "^17.2.4",
"drizzle-orm": "^0.45.1",
"lucide-react": "^0.563.0",
"next": "16.1.6",
"next-auth": "5.0.0-beta.30",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"react-hook-form": "^7.71.1",
"tailwind-merge": "^3.4.0",
"zod": "^4.3.6"
},
"pnpm": {
"overrides": {
"esbuild": ">=0.25.0",
"glob": ">=10.5.0",
"lodash": ">=4.17.23"
}
},
"devDependencies": {
"@commitlint/cli": "^20.4.1",
"@commitlint/config-conventional": "^20.4.1",
"@next/eslint-plugin-next": "^16.1.6",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@semantic-release/npm": "^13.1.4",
"@tailwindcss/postcss": "^4.1.18",
"@types/node": "^22.18.0",
"@types/react": "^19.2.13",
"@types/react-dom": "^19.2.3",
"conventional-changelog-conventionalcommits": "^9.1.0",
"drizzle-kit": "^0.31.8",
"eslint": "^10.0.0",
"postcss": "^8.5.6",
"semantic-release": "^25.0.3",
"tailwindcss": "^4.1.18",
"tsx": "^4.21.0",
"tw-animate-css": "^1.4.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.54.0"
}
}