-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 2.06 KB
/
Copy pathpackage.json
File metadata and controls
65 lines (65 loc) · 2.06 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
{
"name": "bus-cignal",
"version": "0.1.0",
"private": true,
"packageManager": "pnpm@10.28.2",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint",
"typecheck": "tsc --noEmit",
"format": "prettier --write .",
"format:check": "prettier --check .",
"seed:dev": "psql \"postgresql://postgres:postgres@127.0.0.1:54322/postgres\" -f supabase/seed-dev.sql",
"test": "vitest run",
"test:rules": "firebase emulators:exec --only firestore --project demo-bus-cignal \"vitest run --config vitest.rules.config.mts\"",
"test:e2e": "playwright test",
"test:e2e:reset": "supabase db reset && playwright test",
"test:e2e:ui": "playwright test --ui",
"test:e2e:report": "playwright show-report",
"verify:prod": "node scripts/verify-prod-db.mjs",
"load:seed": "node scripts/load/seed-dummy.mjs",
"load:test": "node scripts/load/load-test.mjs",
"load:wipe": "node scripts/load/seed-dummy.mjs --wipe"
},
"dependencies": {
"@base-ui/react": "^1.5.0",
"@sentry/nextjs": "^10.55.0",
"@supabase/ssr": "^0.10.3",
"@supabase/supabase-js": "^2.106.2",
"bcryptjs": "^3.0.3",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"firebase": "^12.14.0",
"firebase-admin": "^13.10.0",
"jose": "^6.2.3",
"lucide-react": "^1.16.0",
"next": "16.2.6",
"pretendard": "^1.3.9",
"react": "19.2.4",
"react-dom": "19.2.4",
"shadcn": "^4.8.2",
"tailwind-merge": "^3.6.0",
"tw-animate-css": "^1.4.0",
"zod": "^4.4.3"
},
"devDependencies": {
"@firebase/rules-unit-testing": "^5.0.1",
"@playwright/test": "^1.60.0",
"@tailwindcss/postcss": "^4",
"@types/bcryptjs": "^3.0.0",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"eslint": "^9",
"eslint-config-next": "16.2.6",
"prettier": "^3.8.3",
"prettier-plugin-tailwindcss": "^0.8.0",
"tailwindcss": "^4",
"typescript": "^5",
"vite": "^6.4.2",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^3.2.4"
}
}