-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 3.27 KB
/
Copy pathpackage.json
File metadata and controls
91 lines (91 loc) · 3.27 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "taskly-ca",
"version": "0.1.0",
"private": true,
"engines": {
"node": ">=22"
},
"scripts": {
"dev": "next dev --turbopack",
"build": "next build",
"start": "next start",
"lint": "eslint .",
"typecheck": "tsc --noEmit",
"knip": "knip --include files,dependencies,unlisted",
"check:migrations": "node scripts/check-migrations.mjs",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage-live": "node --env-file=.env.local node_modules/vitest/vitest.mjs run tests/pricing/coverage.live.test.ts",
"test:audit-live": "node --env-file=.env.local node_modules/vitest/vitest.mjs run tests/classify/audit.live.test.ts",
"test:pricer-live": "node --env-file=.env.local node_modules/vitest/vitest.mjs run tests/pricing/live-pricer.live.test.ts",
"test:airtasker-live": "node --env-file=.env.local node_modules/vitest/vitest.mjs run tests/pricing/airtasker-variety.live.test.ts",
"sec:audit": "node scripts/sec-audit-booking-rls.mjs && node scripts/sec-audit-tables-rls.mjs",
"perf:budget": "node scripts/perf-budget.mjs",
"test:post-task": "node scripts/eval-post-task-flow.mjs",
"test:scope-hybrid": "node scripts/eval-scope-hybrid.mjs",
"test:scope-races": "node scripts/eval-scope-races.mjs",
"test:pill-tap": "node scripts/eval-pill-tap.mjs",
"test:stale-state": "node scripts/eval-stale-state.mjs",
"test:intent-live": "node scripts/eval-intent-matrix.mjs",
"clean": "next clean"
},
"dependencies": {
"@google-analytics/data": "^5.2.1",
"@googlemaps/markerclusterer": "^2.6.2",
"@stripe/stripe-js": "^9.4.0",
"@supabase/ssr": "^0.10.2",
"@supabase/supabase-js": "^2.103.0",
"@tanstack/query-sync-storage-persister": "^5.101.2",
"@tanstack/react-query": "^5.101.2",
"@tanstack/react-query-persist-client": "^5.101.2",
"@types/leaflet": "^1.9.21",
"@types/leaflet.markercluster": "^1.5.6",
"@types/nodemailer": "^8.0.0",
"@vis.gl/react-google-maps": "^1.8.3",
"autoprefixer": "^10.4.21",
"canvas-confetti": "^1.9.4",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"html-to-image": "^1.11.13",
"jose": "^5.10.0",
"leaflet": "^1.9.4",
"leaflet.markercluster": "^1.5.3",
"lucide-react": "^0.553.0",
"motion": "^12.23.24",
"next": "^16.2.9",
"nodemailer": "^8.0.5",
"postcss": "^8.5.6",
"qrcode": "^1.5.4",
"qrcode.react": "^4.2.0",
"radix-ui": "^1.4.3",
"react": "^19.2.7",
"react-dom": "^19.2.7",
"react-leaflet": "^5.0.0",
"sharp": "^0.34.5",
"stripe": "^22.0.1",
"tailwind-merge": "^3.3.1",
"unpdf": "^1.6.2",
"web-push": "^3.6.7",
"zod": "^4.4.3"
},
"devDependencies": {
"@tailwindcss/postcss": "4.1.11",
"@types/canvas-confetti": "^1.9.0",
"@types/google.maps": "^3.65.2",
"@types/node": "^20",
"@types/qrcode": "^1.5.6",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
"@types/web-push": "^3.6.4",
"@typescript-eslint/eslint-plugin": "^8.58.0",
"eslint": "9.39.1",
"eslint-config-next": "^16.2.9",
"eslint-plugin-unused-imports": "^4.4.1",
"jsdom": "^25.0.1",
"knip": "^6.27.0",
"tailwindcss": "4.1.11",
"tw-animate-css": "^1.4.0",
"typescript": "5.9.3",
"vitest": "^2.1.9"
}
}