-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.72 KB
/
Copy pathpackage.json
File metadata and controls
56 lines (56 loc) · 1.72 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
{
"name": "fitfi",
"private": true,
"version": "1.7.0",
"type": "module",
"packageManager": "pnpm@9.12.0",
"engines": {
"node": "20.x"
},
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"dev:netlify": "netlify dev",
"preinstall": "node scripts/bolt-install.mjs",
"typecheck": "tsc --noEmit --pretty",
"build:strict": "npm run typecheck && vite build",
"test": "vitest",
"test:e2e": "playwright test",
"test:e2e:headed": "playwright test --headed",
"test:smoke": "playwright test tests/visual/nova-sse-health.spec.ts --headed",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"lint:fix": "eslint . --ext ts,tsx --fix",
"prepare": "echo 'husky skipped (Bolt)'",
"doctor": "node scripts/doctor.mjs",
"scan:secrets": "bash scripts/scan-secrets.sh",
"design:check": "node scripts/check-design-compliance.mjs",
"design:check:ci": "node scripts/check-design-compliance.mjs --strict",
"start": "vite"
},
"dependencies": {
"@react-oauth/google": "^0.12.2",
"@supabase/supabase-js": "^2.57.4",
"@tanstack/react-query": "^5.90.2",
"@types/dompurify": "^3.0.5",
"dompurify": "^3.4.0",
"framer-motion": "^12.23.22",
"lucide-react": "^0.441.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-helmet-async": "^1.3.0",
"react-hot-toast": "^2.6.0",
"react-router-dom": "^6.26.2",
"tailwind-merge": "^2",
"xlsx": "^0.18.5"
},
"devDependencies": {
"@vitejs/plugin-react": "^4.7.0",
"autoprefixer": "^10.4.0",
"postcss": "^8.4.0",
"tailwindcss": "^3.4.0",
"terser": "^5.44.1",
"typescript": "^5.9.2",
"vite": "^5.4.20"
}
}