-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 2.11 KB
/
Copy pathpackage.json
File metadata and controls
67 lines (67 loc) · 2.11 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
{
"name": "deepdivebrewing-web",
"version": "1.0.2",
"private": true,
"engines": {
"node": "24.x"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint",
"test": "node --import tsx --test \"tests/**/*.test.ts\"",
"test:rules": "firebase emulators:exec --only firestore,storage --project demo-deepdivebrewing-web \"node --import tsx --test rules-tests/*.test.ts\"",
"test:smoke": "npm run build && playwright test",
"check:md-links": "node scripts/check-md-links.mjs",
"check:react-versions": "node scripts/check-react-versions.mjs",
"seed:beers": "tsx scripts/seed-beers.ts",
"seed:venues": "tsx scripts/seed-venues.ts",
"optimize-assets": "node scripts/optimize-assets.mjs",
"bootstrap-superadmin": "node --env-file=.env.local --import tsx scripts/bootstrap-superadmin.ts",
"prune:trade-leads": "node --env-file=.env.local --import tsx scripts/prune-trade-leads.ts"
},
"dependencies": {
"@mdx-js/loader": "^3.1.1",
"@mdx-js/react": "^3.1.1",
"@next/mdx": "^16.3.5",
"@types/mdx": "^2.0.13",
"@vercel/analytics": "^1.6.1",
"@vercel/speed-insights": "^1.3.1",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"embla-carousel-react": "^8.6.0",
"firebase": "^12.9.0",
"lucide-react": "^0.563.0",
"next": "^16.3.5",
"radix-ui": "^1.4.3",
"react": "19.2.3",
"react-dom": "19.2.3",
"resend": "^6.9.1",
"tailwind-merge": "^3.4.0"
},
"devDependencies": {
"@axe-core/playwright": "^4.13.0",
"@firebase/rules-unit-testing": "5.0.2",
"@tailwindcss/postcss": "^4",
"@types/node": "^24",
"@types/react": "^19",
"@types/react-dom": "^19",
"eslint": "^9",
"eslint-config-next": "^16.3.5",
"firebase-admin": "^13.10.0",
"firebase-tools": "15.29.0",
"playwright": "^1.62.1",
"server-only": "^0.0.1",
"shadcn": "^3.8.4",
"tailwindcss": "^4",
"tsx": "^4.21.0",
"tw-animate-css": "^1.4.0",
"typescript": "^5"
},
"overrides": {
"esbuild": "^0.28.1",
"postcss": "^8.5.23",
"uuid": "^11.1.1"
}
}