-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2.21 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 2.21 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
{
"name": "studenthub-next",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"test": "npm run lint && npx tsc --noEmit && next build",
"test:types": "npx tsc --noEmit",
"test:build": "next build",
"test:smoke": "node scripts/smoke-test.mjs",
"test:validate": "node scripts/validate.mjs",
"test:all": "npm run lint && npx tsc --noEmit && next build && node scripts/validate.mjs",
"test:fixtures:discover": "node scripts/fixtures/discover.mjs",
"test:fixtures:validate": "node scripts/fixtures/validate.mjs",
"test:e2e": "npx playwright test",
"test:e2e:ui": "npx playwright test --ui",
"db:inspect-dump": "node scripts/inspect-dump.mjs",
"db:create-sample": "node scripts/create-sample-sql.mjs",
"db:import-sample": "bash scripts/import-sample-db.sh",
"db:import-prod-local": "bash scripts/import-prod-local-db.sh",
"search:index-candidates": "node scripts/index-candidates-meilisearch.mjs",
"db:generate": "prisma generate",
"db:introspect": "prisma db pull",
"db:studio": "prisma studio",
"prepare": "husky"
},
"dependencies": {
"@prisma/client": "^6.6.0",
"@radix-ui/react-slot": "^1.2.4",
"bcryptjs": "^3.0.3",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cmdk": "^1.1.1",
"lucide-react": "^1.14.0",
"next": "^15.3.1",
"next-themes": "^0.4.6",
"radix-ui": "^1.4.3",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"sonner": "^2.0.7",
"tailwind-merge": "^3.5.0",
"zod": "^3.24.3"
},
"lint-staged": {
"*.{ts,tsx}": "eslint --fix"
},
"devDependencies": {
"@commitlint/cli": "^21.0.1",
"@commitlint/config-conventional": "^21.0.1",
"@playwright/test": "^1.60.0",
"@tailwindcss/postcss": "^4.3.0",
"@types/node": "^22.14.1",
"@types/react": "^19.0.10",
"@types/react-dom": "^19.0.4",
"autoprefixer": "^10.5.0",
"eslint": "^9.24.0",
"eslint-config-next": "^15.3.1",
"husky": "^9.1.7",
"lint-staged": "^17.0.5",
"postcss": "^8.5.15",
"prisma": "^6.6.0",
"tailwindcss": "^4.3.0",
"typescript": "^5.8.3",
"vitest": "^4.1.7"
}
}