-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.86 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 2.86 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
{
"name": "bower-wedding",
"version": "0.1.0",
"private": true,
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"dev": "next dev",
"build": "prisma generate && next build",
"postinstall": "prisma generate",
"start": "next start",
"lint": "next lint",
"lint:fix": "next lint --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"test": "vitest",
"test:ui": "vitest --ui",
"test:run": "vitest run",
"test:coverage": "vitest run --coverage",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"db:generate": "prisma generate",
"db:push": "prisma db push",
"db:studio": "prisma studio",
"db:seed": "tsx scripts/seed-test-data.ts",
"db:seed:newcastle": "tsx scripts/seed-newcastle-vendors.ts",
"db:seed:hunter-valley": "tsx scripts/seed-hunter-valley-vendors.ts",
"db:seed:sydney": "tsx scripts/seed-sydney-vendors.ts",
"db:seed:blue-mountains": "tsx scripts/seed-blue-mountains-vendors.ts",
"db:seed:south-coast": "tsx scripts/seed-south-coast-vendors.ts",
"db:seed:all-vendors": "npm run db:seed:newcastle && npm run db:seed:hunter-valley && npm run db:seed:sydney && npm run db:seed:blue-mountains && npm run db:seed:south-coast",
"db:test": "tsx scripts/test-db.ts",
"db:create-test-user": "tsx scripts/create-test-user.ts",
"db:create-auth-user": "tsx scripts/create-auth-user.ts",
"db:seed:demo": "tsx scripts/seed-demo-data.ts",
"setup": "npm install && npm run db:push && npm run db:seed"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.32.1",
"@prisma/client": "^6.3.0",
"@sentry/nextjs": "^10.40.0",
"@supabase/ssr": "^0.8.0",
"@supabase/supabase-js": "^2.95.3",
"@upstash/ratelimit": "^2.0.8",
"@upstash/redis": "^1.36.2",
"dotenv": "^17.3.1",
"next": "^15.3.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-hook-form": "^7.54.2",
"resend": "^6.9.2",
"zod": "^3.24.1",
"zustand": "^5.0.3"
},
"devDependencies": {
"@playwright/test": "^1.58.2",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/node": "^22.13.6",
"@types/react": "^19.0.11",
"@types/react-dom": "^19.0.6",
"@typescript-eslint/eslint-plugin": "^8.55.0",
"@typescript-eslint/parser": "^8.55.0",
"@vitejs/plugin-react": "^5.1.4",
"@vitest/coverage-v8": "^4.0.18",
"autoprefixer": "^10.4.20",
"eslint": "^9",
"eslint-config-next": "^15.3.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-unused-imports": "^4.4.1",
"jsdom": "^28.1.0",
"postcss": "^8.4.50",
"prettier": "^3.8.1",
"prisma": "^6.3.0",
"tailwindcss": "^3.4.18",
"tsx": "^4.21.0",
"typescript": "^5.7.3",
"vitest": "^4.0.18"
}
}