-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
104 lines (104 loc) · 3.19 KB
/
package.json
File metadata and controls
104 lines (104 loc) · 3.19 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
{
"name": "maqro",
"version": "0.6.27",
"private": true,
"license": "Attribution-NonCommercial-NoDerivatives 4.0 International",
"workspaces": [
"packages/*"
],
"description": "A personal nutrition app that respects your time and your data.",
"engines": {
"node": ">=24.0.0"
},
"scripts": {
"update-all": "ncu --interactive",
"preinstall": "node scripts/check-banned-deps.mjs",
"dev": "next dev --turbopack",
"build": "next build",
"start": "next start",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,mjs,json,css,scss,md,html,yaml,yml}\"",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"e2e": "playwright test",
"analyze": "ANALYZE=true next build",
"check:budget": "next build && node scripts/check-bundle-budget.mjs",
"check:deps": "node scripts/check-banned-deps.mjs",
"db:link": "supabase link",
"db:status": "supabase migration list",
"db:push": "supabase db push",
"db:pull": "supabase db pull",
"db:new": "supabase migration new"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.101.0",
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/sortable": "^10.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@maqro/core": "*",
"@radix-ui/react-alert-dialog": "^1.1.16",
"@radix-ui/react-checkbox": "^1.3.4",
"@radix-ui/react-dialog": "^1.1.16",
"@radix-ui/react-dropdown-menu": "^2.1.17",
"@radix-ui/react-label": "^2.1.9",
"@radix-ui/react-select": "^2.3.0",
"@radix-ui/react-slider": "^1.4.0",
"@radix-ui/react-slot": "^1.2.5",
"@radix-ui/react-tooltip": "^1.2.9",
"@react-pdf/renderer": "^4.5.1",
"@supabase/ssr": "^0.10.3",
"@supabase/supabase-js": "^2.107.0",
"@types/web-push": "^3.6.4",
"@upstash/redis": "^1.38.0",
"@zxing/browser": "^0.2.0",
"@zxing/library": "^0.22.0",
"botid": "^1.5.11",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cmdk": "^1.1.1",
"disposable-email-domains": "^1.0.62",
"idb": "^8.0.3",
"lucide-react": "^1.17.0",
"motion": "^12.40.0",
"next": "^16.2.7",
"next-intl": "^4.13.0",
"next-themes": "^0.4.6",
"qrcode": "^1.5.4",
"react": "^19.2.7",
"react-dom": "^19.2.7",
"resend": "^6.12.4",
"sonner": "^2.0.7",
"stripe": "^22.2.0",
"tailwind-merge": "^3.6.0",
"tailwindcss-animate": "^1.0.7",
"web-push": "^3.6.7",
"zod": "^4.4.3"
},
"devDependencies": {
"@axe-core/playwright": "^4.11.3",
"@next/bundle-analyzer": "^16.2.7",
"@playwright/test": "^1.60.0",
"@tailwindcss/postcss": "^4.3.0",
"@testing-library/react": "^16.3.2",
"@trivago/prettier-plugin-sort-imports": "^6.0.2",
"@types/node": "^25.9.2",
"@types/qrcode": "^1.5.6",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
"eslint": "^9.39.4",
"eslint-config-next": "^16.2.7",
"fake-indexeddb": "^6.2.5",
"jsdom": "^29.1.1",
"playwright": "^1.60.0",
"prettier": "^3.8.3",
"prettier-plugin-tailwindcss": "^0.8.0",
"tailwindcss": "^4.3.0",
"typescript": "^6.0.3",
"vitest": "^4.1.8"
},
"overrides": {
"postcss": "^8.5.10"
}
}