-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 2.18 KB
/
Copy pathpackage.json
File metadata and controls
57 lines (57 loc) · 2.18 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
{
"name": "collect",
"private": true,
"version": "0.1.2",
"license": "Apache-2.0",
"type": "module",
"scripts": {
"dev": "vite",
"typecheck": "tsc -b",
"build": "npm run typecheck && vite build",
"preview": "vite preview",
"format": "npm run format:web && npm run format:edge",
"format:web": "prettier --write \"src/**/*.{ts,tsx,css}\" \"tests/**/*.{ts,tsx}\" \"scripts/**/*.mjs\" \".github/**/*.yml\" vite.config.ts \"*.html\" \"docs/**/*.{md,html}\" \"*.md\" package.json .oxlintrc.json",
"format:edge": "deno fmt supabase/functions",
"format:check": "npm run format:web:check && npm run format:edge:check",
"format:web:check": "prettier --check \"src/**/*.{ts,tsx,css}\" \"tests/**/*.{ts,tsx}\" \"scripts/**/*.mjs\" \".github/**/*.yml\" vite.config.ts \"*.html\" \"docs/**/*.{md,html}\" \"*.md\" package.json .oxlintrc.json",
"format:edge:check": "deno fmt --check supabase/functions",
"docs:check": "node scripts/check-doc-links.mjs",
"test": "vitest run",
"test:a11y": "vitest run tests/accessibility.test.tsx",
"check": "npm run format:check && npm run docs:check && npm run lint && npm run check:regola && npm test && npm run build",
"provision": "node scripts/provision.mjs",
"lint": "oxlint",
"lint:fix": "oxlint --fix",
"check:regola": "node scripts/check-regola-headers.mjs"
},
"dependencies": {
"@fontsource-variable/archivo": "^5.3.0",
"@fontsource/archivo": "^5.3.0",
"@supabase/supabase-js": "2.112.3",
"@vercel/analytics": "^2.0.1",
"fflate": "0.8.3",
"lenis": "^1.3.26",
"react": "19.2.8",
"react-dom": "19.2.8",
"tus-js-client": "4.3.1",
"zod": "4.4.3"
},
"devDependencies": {
"@oxlint/plugins": "^1.78.0",
"@testing-library/jest-dom": "^7.0.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.4",
"@types/node": "^26.2.0",
"@types/react": "19.2.18",
"@types/react-dom": "19.2.4",
"@vitejs/plugin-react": "6.0.5",
"axe-core": "^4.13.0",
"fake-indexeddb": "6.2.5",
"jsdom": "^30.0.1",
"oxlint": "^1.78.0",
"prettier": "3.9.6",
"typescript": "7.0.2",
"vite": "8.2.1",
"vitest": "4.1.10"
}
}