forked from Priyanshu-byte-coder/devtrack
-
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) · 2.55 KB
/
package.json
File metadata and controls
88 lines (88 loc) · 2.55 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": "devtrack",
"version": "0.2.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "node scripts/validate-env.js && next build && node scripts/copy-standalone-static.js",
"start": "next start",
"lint": "next lint",
"type-check": "tsc --noEmit",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"test:e2e": "playwright test",
"supabase:generate-types": "npx supabase@latest gen types typescript --local > src/types/supabase.ts"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.101.0",
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/sortable": "^10.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@ducanh2912/next-pwa": "^10.2.9",
"@supabase/ssr": "^0.10.3",
"@supabase/supabase-js": "^2.106.2",
"@upstash/redis": "^1.38.0",
"@vercel/analytics": "^2.0.1",
"@vercel/speed-insights": "^2.0.0",
"canvas-confetti": "^1.9.4",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"date-fns": "^3.6.0",
"dompurify": "^3.1.6",
"fflate": "^0.8.3",
"html-to-image": "^1.11.13",
"idb-keyval": "^6.2.4",
"jspdf": "^4.2.1",
"jspdf-autotable": "^5.0.7",
"lucide-react": "^0.475.0",
"next": "14.2.35",
"next-auth": "^4.24.14",
"next-pwa": "^5.6.0",
"qrcode.react": "^4.2.0",
"react": "^18",
"react-dom": "^18",
"react-markdown": "^10.1.0",
"recharts": "^2.15.4",
"rehype-sanitize": "^6.0.0",
"server-only": "^0.0.1",
"sharp": "^0.34.5",
"sonner": "^2.0.7",
"swagger-ui-react": "^5.32.6",
"tailwind-merge": "^3.6.0"
},
"devDependencies": {
"@next/env": "^16.2.7",
"@playwright/test": "1.60.0",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@types/canvas-confetti": "^1.9.0",
"@types/dompurify": "^3.0.5",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"@types/swagger-ui-react": "^5.18.0",
"@typescript-eslint/eslint-plugin": "^8.60.0",
"@typescript-eslint/parser": "^8.60.0",
"@vitest/coverage-v8": "^1.6.1",
"autoprefixer": "^10.4.19",
"eslint": "^8",
"eslint-config-next": "^14.2.35",
"jsdom": "^29.1.1",
"postcss": "^8.4.38",
"tailwind-scrollbar": "^3.1.0",
"tailwindcss": "^3.4.1",
"ts-jest": "^29.4.11",
"typescript": "^5",
"vitest": "^1.6.0"
},
"overrides": {
"glob": ">=10.5.0",
"serialize-javascript": "^6.0.2",
"esbuild": ">=0.25.0"
},
"engines": {
"node": ">=20.0.0"
},
"packageManager": "pnpm@9.0.0"
}