-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 3.35 KB
/
package.json
File metadata and controls
96 lines (96 loc) · 3.35 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
89
90
91
92
93
94
95
96
{
"name": "my-app",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"build-force": "SKIP_LINT=true next build",
"start": "next start",
"start-preprod": "next start -p 3030",
"lint": "next lint",
"lint:fix": "next lint --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"dev:clean": "rm -rf .next && pnpm dev",
"reset": "pkill -f 'next dev' 2>/dev/null || true && rm -rf .next && pnpm dev",
"test": "vitest",
"test:watch": "vitest --watch",
"test:coverage": "vitest --coverage",
"test:ui": "vitest --ui",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"test:e2e:headed": "playwright test --headed"
},
"dependencies": {
"@hookform/resolvers": "^3.9.1",
"@radix-ui/react-avatar": "^1.1.1",
"@radix-ui/react-checkbox": "^1.1.3",
"@radix-ui/react-collapsible": "^1.1.1",
"@radix-ui/react-dialog": "^1.1.2",
"@radix-ui/react-dropdown-menu": "^2.1.2",
"@radix-ui/react-label": "^2.1.0",
"@radix-ui/react-popover": "^1.1.2",
"@radix-ui/react-progress": "^1.1.7",
"@radix-ui/react-scroll-area": "^1.2.1",
"@radix-ui/react-select": "^2.1.2",
"@radix-ui/react-separator": "^1.1.0",
"@radix-ui/react-slot": "^1.1.0",
"@radix-ui/react-switch": "^1.2.5",
"@radix-ui/react-toast": "^1.2.2",
"@radix-ui/react-tooltip": "^1.1.4",
"@tanstack/react-table": "^8.20.6",
"axios": "^1.7.7",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"cmdk": "1.0.0",
"date-fns": "^2.28.0",
"dotenv": "^16.4.5",
"framer-motion": "^12.23.24",
"html2pdf.js": "^0.10.3",
"jszip": "^3.10.1",
"jwt-decode": "^4.0.0",
"lucide-react": "^0.460.0",
"marked": "^15.0.12",
"next": "14.2.16",
"next-themes": "^0.4.3",
"pdfjs-dist": "^5.4.296",
"react": "^18",
"react-day-picker": "8.10.1",
"react-dom": "^18",
"react-hook-form": "^7.53.2",
"react-loading-skeleton": "^3.5.0",
"react-markdown": "^10.1.0",
"react-pdf": "^10.2.0",
"sonner": "^2.0.1",
"tailwind-merge": "^2.5.4",
"tailwindcss-animate": "^1.0.7",
"tesseract.js": "^5.1.1",
"zod": "^3.23.8"
},
"devDependencies": {
"@playwright/test": "^1.55.1",
"@tailwindcss/typography": "^0.5.19",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.0",
"@types/node": "^20.17.6",
"@types/react": "^18",
"@types/react-dom": "^18",
"@typescript-eslint/eslint-plugin": "^8.34.1",
"@typescript-eslint/parser": "^8.34.1",
"@vitejs/plugin-react": "^5.1.1",
"@vitest/coverage-v8": "4.0.15",
"eslint": "^8",
"eslint-config-next": "14.2.16",
"eslint-config-prettier": "^10.1.5",
"eslint-plugin-unused-imports": "^4.1.4",
"jsdom": "^27.2.0",
"postcss": "^8",
"prettier": "^3.5.3",
"puppeteer": "^24.18.0",
"tailwindcss": "^3.4.1",
"tsx": "^4.19.2",
"typescript": "^5.6.3",
"vitest": "^4.0.15"
}
}