-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 3.06 KB
/
package.json
File metadata and controls
88 lines (88 loc) · 3.06 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
80
81
82
83
84
85
86
87
88
{
"name": "job-tracker",
"private": true,
"type": "module",
"license": "MIT",
"scripts": {
"format": "bunx biome format --fix",
"lint": "bunx biome lint",
"lint:fix": "bunx biome lint --fix",
"check": "bunx biome check",
"check:fix": "bunx biome check --fix",
"build": "react-router build",
"dev": "react-router dev",
"start": "react-router-serve ./build/server/index.js",
"typecheck": "react-router typegen && tsc",
"db:migrate": "bunx drizzle-kit migrate",
"db:generate": "bunx drizzle-kit generate",
"db:backup": "mkdir -p backups && docker exec job-tracker-db pg_dump -U postgres job_tracker > backups/backup-$(date +%Y%m%d-%H%M%S).sql && echo 'Backup created:' && ls -la backups/*.sql | tail -1",
"db:restore": "docker exec job-tracker-db dropdb -U postgres --if-exists job_tracker && docker exec job-tracker-db createdb -U postgres job_tracker && docker exec -i job-tracker-db psql -U postgres job_tracker",
"test": "vitest",
"test:run": "vitest run",
"test:coverage": "vitest run --coverage",
"test:e2e": "playwright test",
"prepare": "simple-git-hooks"
},
"simple-git-hooks": {
"pre-commit": "bunx lint-staged"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,json,css}": "bunx biome check --fix --no-errors-on-unmatched"
},
"dependencies": {
"@hookform/resolvers": "^5.2.2",
"@radix-ui/react-alert-dialog": "^1.1.15",
"@radix-ui/react-checkbox": "^1.3.3",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-hover-card": "^1.1.15",
"@radix-ui/react-label": "^2.1.8",
"@radix-ui/react-popover": "^1.1.15",
"@radix-ui/react-radio-group": "^1.3.8",
"@radix-ui/react-select": "^2.2.6",
"@radix-ui/react-slot": "^1.2.4",
"@radix-ui/react-tabs": "^1.1.13",
"@react-router/node": "7.12.0",
"@react-router/serve": "7.12.0",
"@types/turndown": "^5.0.6",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"date-fns": "^4.1.0",
"drizzle-orm": "^0.45.1",
"isbot": "^5.1.31",
"lucide-react": "^0.562.0",
"postgres": "^3.4.8",
"react": "^19.2.3",
"react-dom": "^19.2.3",
"react-hook-form": "^7.71.1",
"react-markdown": "^10.1.0",
"react-router": "7.12.0",
"tailwind-merge": "^3.4.0",
"tailwindcss-animate": "^1.0.7",
"turndown": "^7.2.2",
"zod": "^4.3.5"
},
"devDependencies": {
"@biomejs/biome": "2.3.11",
"@electric-sql/pglite": "^0.3.15",
"@playwright/test": "^1.57.0",
"@react-router/dev": "7.12.0",
"@tailwindcss/vite": "^4.1.13",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/node": "^25.0.9",
"@types/react": "^19.2.8",
"@types/react-dom": "^19.2.3",
"@vitest/coverage-v8": "^4.0.17",
"drizzle-kit": "^0.31.8",
"jsdom": "^27.4.0",
"lint-staged": "^16.2.7",
"simple-git-hooks": "^2.13.1",
"tailwindcss": "^4.1.13",
"tw-animate-css": "^1.4.0",
"typescript": "^5.9.2",
"vite": "^7.1.7",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^4.0.17"
}
}