-
Notifications
You must be signed in to change notification settings - Fork 48
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.96 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.96 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": "application-tracking-system",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint . --max-warnings=0",
"lint:fix": "eslint . --fix",
"typecheck": "tsc --noEmit --project tsconfig.typecheck.json",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"test:watch": "vitest",
"setup-db": "npx convex dev --once"
},
"dependencies": {
"@google/generative-ai": "^0.24.1",
"@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-label": "^2.1.8",
"@radix-ui/react-select": "^2.2.6",
"@radix-ui/react-separator": "^1.1.8",
"@radix-ui/react-slot": "^1.2.4",
"@radix-ui/react-tabs": "^1.1.13",
"@stackframe/stack": "^2.8.56",
"@upstash/redis": "^1.36.2",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"convex": "^1.32.0",
"docx": "^9.5.3",
"file-saver": "^2.0.5",
"framer-motion": "^12.34.3",
"jspdf": "^4.2.0",
"lucide-react": "^0.555.0",
"next": "16.0.10",
"pdf2json": "^4.0.0",
"react": "19.2.1",
"react-dom": "19.2.1",
"tailwind-merge": "^3.5.0",
"zod": "^3.25.76"
},
"devDependencies": {
"@tailwindcss/postcss": "^4.1.18",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.1",
"@testing-library/user-event": "^14.6.1",
"@types/node": "^20.19.27",
"@types/react": "^19.2.7",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^5.1.2",
"@vitest/coverage-v8": "4.0.16",
"baseline-browser-mapping": "^2.10.0",
"eslint": "^9.39.2",
"eslint-config-next": "16.0.10",
"eslint-plugin-simple-import-sort": "^12.1.1",
"jsdom": "^27.4.0",
"tailwindcss": "^4.1.18",
"tw-animate-css": "^1.4.0",
"typescript": "5.9.3",
"vitest": "^4.0.16",
"vitest-fetch-mock": "^0.4.5"
}
}