-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.34 KB
/
Copy pathpackage.json
File metadata and controls
71 lines (71 loc) · 2.34 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
{
"name": "vite-react-typescript-starter",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"build:web": "vite build",
"cap:sync": "npm run build:web && npx cap sync",
"android": "npm run cap:sync && npx cap open android",
"ios": "npm run cap:sync && npx cap open ios",
"lint": "eslint .",
"preview": "vite preview",
"typecheck": "tsc --noEmit -p tsconfig.app.json",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"test:e2e:debug": "playwright test --debug",
"test:e2e:report": "playwright show-report",
"test:unit": "vitest run",
"audit:seo": "cd tools/seo-audit && npm install && npm run dev",
"audit:seo:local": "cd tools/seo-audit && npm install && npm run dev -- --local",
"audit:seo:auth": "cd tools/seo-audit && npm install && npm run dev -- --auth",
"audit:seo:build": "cd tools/seo-audit && npm install && npm run build"
},
"dependencies": {
"@capacitor/cli": "^8.0.0",
"@capacitor/core": "^8.0.0",
"@googlemaps/js-api-loader": "^2.0.1",
"@sentry/react": "^10.39.0",
"@sentry/vite-plugin": "^4.9.1",
"@stripe/react-stripe-js": "^5.6.0",
"@stripe/stripe-js": "^8.8.0",
"@supabase/supabase-js": "^2.57.4",
"@tanstack/react-virtual": "^3.13.16",
"framer-motion": "^12.25.0",
"lucide-react": "^0.344.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-helmet-async": "^2.0.5",
"react-router-dom": "6.30.1",
"recharts": "^3.6.0",
"stripe": "^20.3.1",
"web-vitals": "^4.2.4"
},
"devDependencies": {
"@capacitor/android": "^8.0.0",
"@capacitor/ios": "^8.0.0",
"@eslint/js": "^9.39.2",
"@playwright/test": "^1.57.0",
"@testing-library/jest-dom": "^6.4.5",
"@testing-library/react": "^14.1.2",
"@types/react": "^18.3.5",
"@types/react-dom": "^18.3.0",
"@vitejs/plugin-react": "^4.3.1",
"@vitest/coverage-v8": "^2.1.9",
"autoprefixer": "^10.4.18",
"dotenv": "^17.2.3",
"eslint": "^9.39.2",
"eslint-plugin-react-hooks": "^5.1.0-rc.0",
"eslint-plugin-react-refresh": "^0.4.11",
"globals": "^15.9.0",
"jsdom": "^24.0.0",
"postcss": "^8.4.35",
"tailwindcss": "^3.4.1",
"typescript": "^5.5.3",
"typescript-eslint": "^8.3.0",
"vite": "^7.3.0",
"vitest": "^2.1.8"
}
}