-
Notifications
You must be signed in to change notification settings - Fork 52
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.62 KB
/
package.json
File metadata and controls
85 lines (85 loc) · 2.62 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
{
"name": "genai-contract-compliance-analysis",
"private": true,
"version": "1.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview --host 0.0.0.0 --port 5173",
"test": "vitest run",
"test:watch": "vitest",
"test:ui": "vitest --ui"
},
"dependencies": {
"@aws-amplify/ui-react": "^6.11.2",
"@aws-sdk/client-s3": "^3.919.0",
"@aws-sdk/lib-storage": "^3.919.0",
"@radix-ui/react-accordion": "^1.2.11",
"@radix-ui/react-avatar": "^1.1.10",
"@radix-ui/react-collapsible": "^1.1.11",
"@radix-ui/react-dialog": "^1.1.14",
"@radix-ui/react-dropdown-menu": "^2.1.15",
"@radix-ui/react-label": "^2.1.7",
"@radix-ui/react-navigation-menu": "^1.2.13",
"@radix-ui/react-progress": "^1.1.7",
"@radix-ui/react-select": "^2.2.5",
"@radix-ui/react-slot": "^1.2.3",
"@radix-ui/react-switch": "^1.2.5",
"@radix-ui/react-tooltip": "^1.2.7",
"@tanstack/react-table": "^8.21.3",
"aws-amplify": "^6.15.4",
"axios": "^1.15.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"i18next": "25.3.4",
"i18next-browser-languagedetector": "8.2.0",
"lucide-react": "^0.284.0",
"next-themes": "^0.4.6",
"react": "^19.1.1",
"react-dom": "^19.1.1",
"react-i18next": "15.6.1",
"react-router": "^7.7.1",
"sonner": "^2.0.7",
"tailwind-merge": "^1.14.0",
"tailwindcss-animate": "^1.0.7",
"vaul": "^1.1.2"
},
"devDependencies": {
"@faker-js/faker": "^10.1.0",
"@tailwindcss/vite": "^4.1.11",
"@testing-library/jest-dom": "^6.4.6",
"@testing-library/react": "^14.3.1",
"@testing-library/user-event": "^14.5.2",
"@types/node": "^20.19.9",
"@types/react": "^19.1.9",
"@types/react-dom": "^19.1.7",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"@vitejs/plugin-react-swc": "^4.0.0",
"eslint": "^8.57.1",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-react-refresh": "^0.4.20",
"jsdom": "^24.1.0",
"prettier": "^3.6.2",
"prettier-plugin-tailwindcss": "^0.5.14",
"tailwindcss": "^4.1.11",
"typescript": "^5.9.2",
"vite": "^7.1.2",
"vitest": "^1.6.0"
},
"pnpm": {
"onlyBuiltDependencies": [
"@swc/core",
"esbuild"
],
"overrides": {
"esbuild@<=0.24.2": ">=0.25.0",
"vite@>=7.1.0 <=7.1.4": ">=7.1.5",
"axios@>=1.0.0 <1.12.0": ">=1.12.0",
"vite@>=5.2.6 <=5.4.20": ">=5.4.21",
"vite@>=7.1.0 <=7.1.10": ">=7.1.11"
}
}
}