-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 2.13 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 loc) · 2.13 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
{
"name": "opencomments",
"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: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",
"test:audit": "npm audit --omit=dev --audit-level=high",
"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.105.4",
"lucide-react": "^0.577.0",
"react": "^19.2.6",
"react-dom": "^19.2.6",
"react-router-dom": "^7.15.1"
},
"devDependencies": {
"@axe-core/playwright": "^4.11.3",
"@eslint/js": "^9.39.2",
"@playwright/test": "^1.60.0",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.2",
"autoprefixer": "^10.4.18",
"eslint": "^9.39.2",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.5.2",
"globals": "^17.6.0",
"jest-environment-jsdom": "^30.4.1",
"markdown-link-check": "^3.13.7",
"markdownlint-cli2": "^0.21.0",
"playwright": "^1.60.0",
"postcss": "^8.4.35",
"supabase": "^2.31.8",
"tailwindcss": "^3.4.1",
"typescript": "^5.5.3",
"typescript-eslint": "^8.56.0",
"vite": "^8.0.13",
"vitest": "^4.1.6"
},
"overrides": {
"minimatch": "10.2.5"
}
}