-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.79 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 1.79 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
{
"name": "garcon-tools",
"version": "1.0.0",
"description": "Open-source cocktail, bar, and party tools from Garçon.",
"type": "module",
"private": false,
"license": "MIT",
"engines": {
"node": ">=22",
"npm": ">=10"
},
"packageManager": "npm@10.9.2",
"repository": {
"type": "git",
"url": "https://github.com/garcon-drinks/garcon-tools.git"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"test": "vitest run",
"typecheck": "tsc --noEmit",
"lint": "eslint .",
"preview": "opennextjs-cloudflare build && opennextjs-cloudflare preview",
"deploy": "opennextjs-cloudflare build && opennextjs-cloudflare deploy",
"cf-typegen": "wrangler types --env-interface CloudflareEnv cloudflare-env.d.ts"
},
"dependencies": {
"@opennextjs/cloudflare": "^1.20.2",
"@radix-ui/react-checkbox": "^1.1.4",
"@radix-ui/react-label": "^2.1.1",
"@radix-ui/react-select": "^2.1.5",
"@radix-ui/react-separator": "^1.1.2",
"@radix-ui/react-slot": "^1.1.2",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"lucide-react": "^0.468.0",
"next": "16.2.12",
"react": "19.2.8",
"react-dom": "19.2.8",
"tailwind-merge": "^2.6.0",
"tailwindcss-animate": "^1.0.7"
},
"devDependencies": {
"@tailwindcss/typography": "^0.5.19",
"@types/node": "^22.0.0",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"eslint": "^9.0.0",
"eslint-config-next": "16.2.12",
"postcss": "8.5.18",
"prettier": "^3.5.0",
"prettier-plugin-tailwindcss": "^0.6.11",
"tailwindcss": "^3.4.17",
"typescript": "^5.7.0",
"vite": "^8.2.0",
"vitest": "^4.1.0",
"wrangler": "^4.118.0"
},
"overrides": {
"postcss": "$postcss",
"sharp": "0.35.0"
}
}