-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
112 lines (112 loc) · 3.67 KB
/
Copy pathpackage.json
File metadata and controls
112 lines (112 loc) · 3.67 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": "fastfood",
"version": "0.1.0",
"private": true,
"type": "module",
"license": "MIT",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint '**/*.{ts,tsx}' && tsc --noEmit",
"type-check": "tsc --noEmit",
"format": "eslint '**/*.{ts,tsx}' --fix && prettier --write .",
"db:studio": "drizzle-kit studio",
"db:push": "drizzle-kit push",
"db:generate": "drizzle-kit generate",
"i18n:check": "tsx ./scripts/i18n-check.ts",
"test": "dotenv -e .env.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",
"test:visual": "playwright test e2e/visual --update-snapshots",
"test:visual:ci": "playwright test --project=visual",
"test:performance": "lhci autorun",
"test:performance:local": "lighthouse http://localhost:3000 --output=json --output-path=./performance-report.json"
},
"dependencies": {
"@hookform/resolvers": "^5.9.1",
"@tanstack/react-query": "^5.101.2",
"@tanstack/react-table": "^9.1.2",
"@upstash/ratelimit": "^2.0.8",
"@upstash/redis": "^1.38.2",
"bcrypt": "^6.0.0",
"csrf": "^3.1.0",
"framer-motion": "^13.1.1",
"isomorphic-dompurify": "^3.22.0",
"jose": "^6.2.10",
"mercadopago": "^3.4.0",
"next": "^16.3.2",
"react": "^19.2.7",
"react-dom": "^19.2.7",
"react-hook-form": "^7.86.0",
"recharts": "^3.9.2",
"resend": "^6.22.0"
},
"devDependencies": {
"@eslint/js": "^9.39.5",
"@lhci/cli": "^0.15.1",
"@neondatabase/serverless": "^1.1.0",
"@playwright/test": "^1.61.1",
"@radix-ui/react-avatar": "^1.2.2",
"@radix-ui/react-checkbox": "^1.3.11",
"@radix-ui/react-dialog": "^1.1.19",
"@radix-ui/react-dropdown-menu": "^2.1.20",
"@radix-ui/react-icons": "^1.3.2",
"@radix-ui/react-label": "^2.1.11",
"@radix-ui/react-popover": "^1.1.19",
"@radix-ui/react-slot": "^1.3.0",
"@radix-ui/react-switch": "^1.3.7",
"@radix-ui/react-toast": "^1.2.19",
"@radix-ui/react-tooltip": "^1.2.12",
"@tailwindcss/postcss": "^4.3.2",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.5",
"@types/bcrypt": "^6.0.0",
"@types/node": "^24.13.3",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.4",
"@typescript-eslint/eslint-plugin": "^8.67.0",
"@typescript-eslint/parser": "^8.67.0",
"@vitest/coverage-v8": "^4.1.11",
"@vitest/ui": "^4.1.11",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"date-fns": "^4.4.0",
"dotenv-cli": "^11.0.0",
"drizzle-kit": "^0.31.10",
"drizzle-orm": "^0.45.2",
"eslint": "^9.39.5",
"eslint-config-next": "^16.3.2",
"eslint-config-prettier": "^10.1.8",
"eslint-import-resolver-typescript": "^4.4.5",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-prettier": "^5.5.6",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.1.1",
"eslint-plugin-react-refresh": "^0.5.4",
"jsdom": "^30.0.1",
"lighthouse": "^13.4.0",
"lucide-react": "^1.33.0",
"next-intl": "^4.13.7",
"next-themes": "^0.4.6",
"pg": "^8.23.0",
"prettier": "^3.9.5",
"prettier-plugin-tailwindcss": "^0.8.1",
"react-day-picker": "^10.0.1",
"tailwind-merge": "^3.6.0",
"tailwindcss": "^4.3.2",
"tailwindcss-animate": "^1.0.7",
"tsx": "^4.23.12",
"typescript": "^5.9.3",
"vite": "^8.2.2",
"vitest": "^4.1.11",
"wait-on": "^9.0.10",
"webpack": "^5.108.4",
"zod": "^4.4.3",
"zustand": "^5.0.15"
}
}