-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
112 lines (112 loc) · 3.6 KB
/
Copy pathpackage.json
File metadata and controls
112 lines (112 loc) · 3.6 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "fitbox-meal-app",
"version": "0.1.0",
"private": true,
"description": "Asian fusion meal delivery platform with subscription management",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"type-check": "tsc --noEmit",
"db:generate": "prisma generate",
"db:push": "prisma db push",
"db:seed": "tsx prisma/seed.ts",
"db:studio": "prisma studio",
"test": "jest",
"test:watch": "jest --watch",
"test:contract": "jest --config jest.contract.config.js",
"test:e2e": "playwright test",
"test:api": "jest --config jest.api.config.js",
"prepare": "husky",
"tasks:complete": "node scripts/task-manager.js complete",
"tasks:status": "node scripts/task-manager.js status",
"tasks:next": "node scripts/task-manager.js next",
"tasks:summary": "node scripts/task-manager.js summary",
"docs:validate": "node scripts/validate-docs.js",
"docs:check": "node scripts/validate-docs.js"
},
"dependencies": {
"@hookform/resolvers": "^5.2.2",
"@next-auth/prisma-adapter": "^1.0.7",
"@prisma/client": "^5.19.0",
"@radix-ui/react-avatar": "^1.1.10",
"@radix-ui/react-checkbox": "^1.3.3",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-dropdown-menu": "^2.1.16",
"@radix-ui/react-icons": "^1.3.2",
"@radix-ui/react-label": "^2.1.7",
"@radix-ui/react-navigation-menu": "^1.2.14",
"@radix-ui/react-radio-group": "^1.3.8",
"@radix-ui/react-scroll-area": "^1.2.10",
"@radix-ui/react-select": "^2.2.6",
"@radix-ui/react-separator": "^1.1.7",
"@radix-ui/react-slot": "^1.2.3",
"@radix-ui/react-tabs": "^1.1.13",
"@radix-ui/react-toast": "^1.2.0",
"@stripe/react-stripe-js": "^2.9.0",
"@stripe/stripe-js": "^4.10.0",
"@tanstack/react-query": "^5.51.0",
"@tanstack/react-query-devtools": "^5.51.0",
"@types/nodemailer": "^7.0.1",
"bcryptjs": "^2.4.3",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.0",
"date-fns": "^4.1.0",
"framer-motion": "^11.3.0",
"isomorphic-dompurify": "^2.27.0",
"jsonwebtoken": "^9.0.2",
"lucide-react": "^0.441.0",
"next": "^14.2.0",
"next-auth": "^4.24.0",
"nodemailer": "^6.10.1",
"prisma": "^5.19.0",
"react": "^18.3.0",
"react-dom": "^18.3.0",
"react-hook-form": "^7.62.0",
"resend": "^3.5.0",
"stripe": "^16.8.0",
"tailwind-merge": "^2.5.0",
"tailwindcss": "^3.4.0",
"tailwindcss-animate": "^1.0.7",
"zod": "^4.1.9",
"zustand": "^4.5.7"
},
"devDependencies": {
"@playwright/test": "^1.55.0",
"@testing-library/jest-dom": "^6.4.0",
"@testing-library/react": "^16.0.0",
"@testing-library/user-event": "^14.5.0",
"@types/bcryptjs": "^2.4.6",
"@types/jest": "^30.0.0",
"@types/jsonwebtoken": "^9.0.6",
"@types/node": "^20.14.0",
"@types/react": "^18.3.0",
"@types/react-dom": "^18.3.0",
"@types/supertest": "^6.0.0",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"autoprefixer": "^10.4.0",
"dotenv": "^17.2.2",
"eslint": "^8.57.0",
"eslint-config-next": "^14.2.0",
"husky": "^9.1.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"lint-staged": "^15.2.0",
"node-mocks-http": "^1.17.2",
"playwright": "^1.55.0",
"postcss": "^8.4.0",
"prettier": "^3.3.0",
"prettier-plugin-tailwindcss": "^0.6.0",
"shadcn": "^3.2.1",
"supertest": "^7.0.0",
"ts-jest": "^29.4.1",
"tsx": "^4.19.0",
"typescript": "^5.5.0"
},
"engines": {
"node": ">=20.0.0",
"npm": ">=10.0.0"
}
}