-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.94 KB
/
Copy pathpackage.json
File metadata and controls
73 lines (73 loc) · 1.94 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
{
"name": "hireai-platform",
"private": true,
"version": "0.1.0",
"type": "module",
"scripts": {
"dev": "next dev",
"dev:webhook": "concurrently \"npm run dev\" \"ngrok http 3000\"",
"build": "prisma generate && next build",
"postinstall": "prisma generate",
"start": "next start",
"lint": "next lint",
"typecheck": "tsc --noEmit",
"format": "prettier --write .",
"format:check": "prettier --check .",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"db:generate": "prisma generate",
"db:migrate": "prisma migrate dev",
"db:deploy": "prisma migrate deploy",
"db:studio": "prisma studio",
"prepare": "husky || true"
},
"lint-staged": {
"*.{ts,tsx}": [
"prettier --write",
"eslint --fix"
],
"*.{json,css,md}": [
"prettier --write"
]
},
"dependencies": {
"@google/generative-ai": "^0.24.1",
"@prisma/client": "^5.22.0",
"@tailwindcss/postcss": "^4.2.2",
"clsx": "2.1.1",
"date-fns": "^4.1.0",
"framer-motion": "^12.38.0",
"lucide-react": "^1.8.0",
"next": "^15.1.11",
"pdf-parse": "^2.4.5",
"postcss": "8.5.2",
"react": "19.0.0",
"react-dom": "19.0.0",
"react-hot-toast": "^2.6.0",
"recharts": "^3.8.1",
"tailwind-merge": "3.4.0",
"zod": "^4.4.3"
},
"devDependencies": {
"@types/node": "^22.13.4",
"@types/pdf-parse": "^1.1.5",
"@types/react": "19.0.8",
"@types/react-dom": "19.0.3",
"@vitejs/plugin-react": "^6.0.3",
"concurrently": "^9.2.1",
"eslint": "^8.57.1",
"eslint-config-next": "^15.5.20",
"husky": "^9.1.7",
"lint-staged": "^17.0.8",
"ngrok": "^5.0.0-beta.2",
"prettier": "^3.9.4",
"prettier-plugin-tailwindcss": "^0.8.0",
"prisma": "^5.22.0",
"tailwindcss": "^4.2.2",
"ts-node": "^10.9.2",
"typescript": "5.7.3",
"vite-tsconfig-paths": "^6.1.1",
"vitest": "^3.2.6"
}
}