-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.32 KB
/
Copy pathpackage.json
File metadata and controls
44 lines (44 loc) · 1.32 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
{
"name": "sluglines",
"version": "1.0.0",
"description": "HOV-3 carpool coordination app for Northern Virginia",
"private": true,
"scripts": {
"dev": "next dev",
"test": "node scripts/run-tests.mjs",
"build": "next build",
"start": "next start",
"lint": "next lint",
"typecheck": "tsc --noEmit",
"sql:check": "node scripts/sql-lint.mjs && node --experimental-strip-types scripts/seed-locations.mjs --check",
"seed:locations": "node --experimental-strip-types scripts/seed-locations.mjs --write",
"audit:check": "node scripts/audit-check.mjs --level=high",
"e2e": "playwright test",
"e2e:ui": "playwright test --ui"
},
"dependencies": {
"@supabase/ssr": "^0.12.4",
"@supabase/supabase-js": "^2.43.0",
"clsx": "^2.1.1",
"date-fns": "^3.6.0",
"lucide-react": "^0.379.0",
"next": "14.2.35",
"parse5": "^8.0.1",
"react": "^18.3.0",
"react-dom": "^18.3.0"
},
"devDependencies": {
"@axe-core/playwright": "^4.13.0",
"@playwright/test": "^1.62.1",
"@types/node": "^20.12.12",
"@types/react": "^18.3.2",
"@types/react-dom": "^18.3.0",
"autoprefixer": "^10.4.19",
"eslint": "^8.57.0",
"eslint-config-next": "14.2.35",
"postcss": "^8.5.26",
"tailwindcss": "^3.4.3",
"typescript": "^5.4.5"
},
"type": "module"
}