-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.05 KB
/
Copy pathpackage.json
File metadata and controls
76 lines (76 loc) · 2.05 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
{
"name": "eventseats",
"version": "0.1.0",
"private": true,
"license": "MIT",
"engines": {
"node": ">=20"
},
"scripts": {
"dev": "next dev --turbopack",
"build": "next build",
"start": "next start",
"lint": "next lint",
"lint:fix": "next lint --fix",
"type-check": "tsc --noEmit",
"test": "vitest run --reporter=dot",
"test:watch": "vitest",
"setup": "node scripts/setup.js",
"seed": "tsx scripts/seed-admin.ts",
"setup-demo": "tsx scripts/seed-admin.ts",
"format": "prettier --write .",
"format:check": "prettier --check ."
},
"dependencies": {
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/sortable": "^10.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@hookform/resolvers": "^5.2.1",
"@mui/icons-material": "^7.3.1",
"@reduxjs/toolkit": "^2.8.2",
"@stripe/stripe-js": "^7.8.0",
"@supabase/supabase-js": "^2.54.0",
"@types/bcryptjs": "^3.0.0",
"@vercel/analytics": "^1.5.0",
"bcryptjs": "^3.0.2",
"clsx": "^2.1.1",
"date-fns": "^4.1.0",
"jspdf": "^3.0.1",
"next": "15.4.6",
"next-auth": "^5.0.0-beta.29",
"nodemailer": "^6.10.1",
"qrcode": "^1.5.4",
"react": "19.1.0",
"react-dom": "19.1.0",
"react-hook-form": "^7.62.0",
"react-redux": "^9.2.0",
"stripe": "^18.4.0",
"tailwind-merge": "^3.3.1",
"uuid": "^11.1.0",
"zod": "^4.0.15"
},
"devDependencies": {
"@eslint/eslintrc": "^3",
"@tailwindcss/postcss": "^4",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.0.1",
"@testing-library/user-event": "^14.6.1",
"@types/node": "^20",
"@types/nodemailer": "^6.4.17",
"@types/qrcode": "^1.5.5",
"@types/react": "^19",
"@types/react-dom": "^19",
"@types/uuid": "^10.0.0",
"@vitejs/plugin-react": "^4.3.4",
"eslint": "^9",
"eslint-config-next": "15.4.6",
"jsdom": "^26.1.0",
"msw": "^2.6.6",
"prettier": "^3.3.3",
"tailwindcss": "^4",
"tsx": "^4.20.3",
"typescript": "^5",
"vite-tsconfig-paths": "^5.1.3",
"vitest": "^2.0.5"
}
}