-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.95 KB
/
Copy pathpackage.json
File metadata and controls
82 lines (82 loc) · 2.95 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
{
"name": "oui",
"private": true,
"type": "module",
"scripts": {
"build": "react-router build",
"build:int": "CLOUDFLARE_ENV=int pnpm build",
"build:PRODUCTION": "CLOUDFLARE_ENV=production pnpm build",
"deploy": "pnpm run build && wrangler deploy",
"deploy:int": "pnpm run build:int && wrangler deploy",
"deploy:PRODUCTION": "pnpm build:PRODUCTION && wrangler deploy",
"dev": "react-router dev",
"preview": "pnpm run build && vite preview",
"cf-typegen": "wrangler types",
"typecheck": "npm run cf-typegen && react-router typegen && tsc -b",
"lint": "eslint .",
"clean": "pnpm clean:node && pnpm clean:wrangler && pnpm clean:etc",
"clean:node": "rm -rf node_modules",
"clean:wrangler": "rm -rf .wrangler",
"clean:etc": "rm -rf .react-router build dist",
"tail:int": "wrangler tail oui-int",
"tail:PRODUCTION": "wrangler tail oui",
"registry:build": "rm -rf public/r && shadcn build",
"migrate:radix": "shadcn migrate radix",
"refs:react-spectrum": "rm -rf refs/react-spectrum && mkdir -p refs/react-spectrum && curl -L https://github.com/adobe/react-spectrum/archive/refs/tags/react-aria-components@1.13.0.tar.gz | tar -xz -C refs/react-spectrum --strip-components=1",
"refs:react-day-picker": "rm -rf refs/react-day-picker && mkdir -p refs/react-day-picker && curl -L https://github.com/gpbl/react-day-picker/archive/refs/tags/v9.12.0.tar.gz | tar -xz -C refs/react-day-picker --strip-components=1"
},
"dependencies": {
"@epic-web/invariant": "1.0.0",
"@internationalized/date": "3.10.0",
"@tabler/icons-react": "3.35.0",
"class-variance-authority": "0.7.1",
"clsx": "2.1.1",
"date-fns": "4.1.0",
"hast-util-to-jsx-runtime": "2.3.6",
"isbot": "5.1.28",
"jotai": "^2.15.0",
"lucide-react": "0.514.0",
"radix-ui": "1.4.3",
"react": "19.2.0",
"react-aria-components": "1.13.0",
"react-day-picker": "9.12.0",
"react-dom": "19.2.0",
"react-router": "7.9.4",
"remix-themes": "2.0.4",
"simple-icons": "15.16.1",
"tailwind-merge": "3.3.1"
},
"devDependencies": {
"@cloudflare/vite-plugin": "1.13.3",
"@eslint/js": "9.35.0",
"@ianvs/prettier-plugin-sort-imports": "4.4.1",
"@react-router/dev": "7.9.4",
"@react-router/fs-routes": "7.9.4",
"@tailwindcss/vite": "4.1.16",
"@types/node": "22.13.14",
"@types/react": "19.2.2",
"@types/react-dom": "19.2.2",
"eslint": "9.38.0",
"eslint-plugin-react": "7.37.5",
"eslint-plugin-react-hooks": "7.0.0",
"prettier": "3.6.2",
"prettier-plugin-tailwindcss": "0.7.1",
"shadcn": "3.4.2",
"shiki": "3.7.0",
"tailwindcss": "4.1.16",
"tw-animate-css": "1.4.0",
"typescript": "5.9.2",
"typescript-eslint": "8.46.2",
"vite": "7.1.3",
"vite-tsconfig-paths": "5.1.4",
"wrangler": "4.38.0"
},
"packageManager": "pnpm@10.4.0",
"engines": {
"node": "22.18.0"
},
"volta": {
"node": "22.18.0",
"pnpm": "10.4.0"
}
}