-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 2.23 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 2.23 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
{
"name": "vite-react-typescript-starter",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"lint": "eslint .",
"typecheck": "tsc --project tsconfig.app.json --noEmit",
"preview": "vite preview",
"db:migrate": "npx supabase db push",
"db:custom-migrate": "node apply-migrations.js",
"db:validate:fresh": "bash scripts/validate-migrations-fresh.sh",
"pilot:dry-run": "bash scripts/run-pilot-workflow.sh",
"test": "vitest --exclude tests/playwright/**",
"test:ci": "vitest --run --passWithNoTests --exclude tests/playwright/**",
"test:watch": "vitest --watch --exclude tests/playwright/**",
"test:coverage": "vitest --coverage --exclude tests/playwright/**",
"test:a11y": "npx playwright test tests/playwright/accessibility.spec.ts",
"cypress:open": "cypress open",
"cypress:run": "cypress run",
"playwright:test": "playwright test",
"lint:md": "markdownlint-cli2 \"**/*.md\" \"#node_modules\"",
"lint:md:fix": "markdownlint-cli2 --fix \"**/*.md\" \"#node_modules\""
},
"dependencies": {
"@hcaptcha/react-hcaptcha": "^1.12.0",
"@supabase/supabase-js": "^2.52.1",
"lucide-react": "^0.344.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-router-dom": "^7.7.1"
},
"devDependencies": {
"@axe-core/playwright": "^4.10.2",
"@eslint/js": "^9.39.2",
"@playwright/test": "^1.58.2",
"@testing-library/jest-dom": "^6.6.4",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"@types/react": "^18.3.5",
"@types/react-dom": "^18.3.0",
"@vitejs/plugin-react": "^4.7.0",
"autoprefixer": "^10.4.18",
"cypress": "^14.5.3",
"eslint": "^9.39.2",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.11",
"globals": "^15.9.0",
"jest-environment-jsdom": "^30.0.5",
"markdown-link-check": "^3.13.7",
"markdownlint-cli2": "^0.21.0",
"playwright": "^1.54.1",
"postcss": "^8.4.35",
"supabase": "^2.31.8",
"tailwindcss": "^3.4.1",
"typescript": "^5.5.3",
"typescript-eslint": "^8.56.0",
"vite": "^7.0.6",
"vitest": "^3.2.4"
},
"overrides": {
"minimatch": "10.2.1"
}
}