-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 2 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 2 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
{
"name": "next-queue",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"format": "prettier --write .",
"format:check": "prettier --check .",
"lint": "eslint . --max-warnings=0",
"typecheck": "next typegen && tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"test:e2e": "playwright test",
"test:production": "playwright test --config playwright.production.config.ts",
"db:start": "supabase start",
"db:stop": "supabase stop",
"db:status": "supabase status",
"db:reset": "supabase db reset --local",
"db:test": "supabase test db --local",
"db:types": "supabase gen types typescript --local --schema public > src/lib/supabase/database.types.ts",
"db:types:check": "node scripts/check-database-types.mjs",
"db:lint": "supabase db lint --local --level warning",
"test:integration": "vitest run --config vitest.integration.config.ts",
"test:realtime": "vitest run src/lib/realtime/realtime-controller.test.ts"
},
"dependencies": {
"@supabase/ssr": "0.12.3",
"@supabase/supabase-js": "2.110.7",
"lucide-react": "^1.25.0",
"motion": "^12.42.2",
"next": "16.2.12",
"next-themes": "^0.4.6",
"react": "19.2.4",
"react-dom": "19.2.4",
"zod": "^4.4.3"
},
"devDependencies": {
"@axe-core/playwright": "^4.12.1",
"@playwright/test": "^1.61.1",
"@tailwindcss/postcss": "^4",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"@vitejs/plugin-react": "^6.0.3",
"eslint": "^9",
"eslint-config-next": "16.2.12",
"jsdom": "^29.1.1",
"prettier": "^3.9.5",
"supabase": "2.109.1",
"tailwindcss": "^4",
"typescript": "^5",
"vitest": "^4.1.10"
},
"overrides": {
"minimatch": "10.2.5",
"postcss": "8.5.23",
"sharp": "0.35.3"
}
}