-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
105 lines (105 loc) · 3.52 KB
/
package.json
File metadata and controls
105 lines (105 loc) · 3.52 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
97
98
99
100
101
102
103
104
105
{
"name": "frontend-react",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "wrangler pages dev --port 8788 & vite",
"dev:vite": "vite",
"dev:wrangler": "wrangler pages dev --port 8788",
"build": "tsc -b && vite build",
"type-check": "tsc -b --noEmit",
"lint": "eslint .",
"preview": "vite preview",
"wrangler:dev": "npm run build && wrangler pages dev dist --compatibility-date=2025-09-30",
"wrangler:deploy": "npm run build && wrangler pages deploy dist --project-name=researchtoolspy",
"validate:schema": "ts-node scripts/validate-schema.ts",
"validate:pre-deploy": "./scripts/pre-deployment-check.sh",
"migrate:prod": "wrangler d1 migrations apply researchtoolspy-prod --remote",
"test:e2e": "npx playwright test",
"test:e2e:smoke": "npx playwright test --grep @smoke",
"test:e2e:ui": "npx playwright test --ui",
"test:e2e:debug": "npx playwright test --debug"
},
"dependencies": {
"@hookform/resolvers": "^5.2.2",
"@radix-ui/react-accordion": "^1.2.12",
"@radix-ui/react-alert-dialog": "^1.1.15",
"@radix-ui/react-avatar": "^1.1.11",
"@radix-ui/react-checkbox": "^1.3.3",
"@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-popover": "^1.1.15",
"@radix-ui/react-progress": "^1.1.8",
"@radix-ui/react-radio-group": "^1.3.8",
"@radix-ui/react-select": "^2.2.6",
"@radix-ui/react-separator": "^1.1.8",
"@radix-ui/react-slider": "^1.3.6",
"@radix-ui/react-slot": "^1.2.4",
"@radix-ui/react-switch": "^1.2.6",
"@radix-ui/react-tabs": "^1.1.13",
"@radix-ui/react-tooltip": "^1.2.8",
"@tanstack/react-query": "^5.99.0",
"@tanstack/react-query-devtools": "^5.99.0",
"@turf/bbox": "^7.3.4",
"@turf/circle": "^7.3.4",
"@turf/helpers": "^7.3.4",
"@turf/sector": "^7.3.4",
"@types/dompurify": "^3.0.5",
"@ybd-project/ytdl-core": "^6.0.8",
"axios": "^1.13.6",
"chart.js": "^4.5.1",
"chartjs-node-canvas": "^5.0.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cmdk": "^1.1.1",
"docx": "^9.6.1",
"dompurify": "^3.3.3",
"exceljs": "^4.4.0",
"file-saver": "^2.0.5",
"html2canvas": "^1.4.1",
"i18next": "^26.0.4",
"i18next-browser-languagedetector": "^8.2.1",
"jspdf": "^4.2.1",
"jspdf-autotable": "^5.0.7",
"lucide-react": "^1.8.0",
"maplibre-gl": "^5.22.0",
"marked": "^18.0.0",
"openai": "^6.34.0",
"papaparse": "^5.5.3",
"pptxgenjs": "^4.0.1",
"react": "^19.2.5",
"react-dom": "^19.2.5",
"react-force-graph-2d": "^1.29.1",
"react-hook-form": "^7.72.1",
"react-i18next": "^17.0.2",
"react-router-dom": "^7.14.0",
"recharts": "^3.8.1",
"tailwind-merge": "^3.5.0",
"zod": "^4.3.6",
"zustand": "^5.0.12"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@playwright/test": "^1.59.1",
"@tailwindcss/postcss": "^4.2.2",
"@types/node": "^25.6.0",
"@types/papaparse": "^5.5.2",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^5.2.0",
"autoprefixer": "^10.4.27",
"baseline-browser-mapping": "^2.10.18",
"eslint": "^10.2.0",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-react-refresh": "^0.5.2",
"globals": "^17.5.0",
"postcss": "^8.5.9",
"tailwindcss": "^4.2.2",
"typescript": "^6.0.2",
"typescript-eslint": "^8.58.1",
"vite": "^7.3.2",
"wrangler": "^4.81.1"
}
}