-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
113 lines (113 loc) · 3.35 KB
/
package.json
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
113
{
"name": "audio-visual",
"private": true,
"sideEffects": false,
"type": "module",
"imports": {
"#*": "./*"
},
"scripts": {
"build": "remix vite:build",
"build:icons": "tsx ./other/build-icons.ts",
"deploy": "wrangler pages deploy ./build/client --outdir bundled/ --dry-run",
"predev": "npm run build:icons --silent",
"dev": "remix vite:dev --sourcemapClient --sourcemapServer",
"dev:wrangler": "remix vite:build && wrangler pages dev",
"lint": "eslint .",
"format": "prettier --write .",
"start": "wrangler pages dev ./build/client",
"typecheck": "tsc",
"typegen": "wrangler types",
"drizzle:update": "drizzle-kit generate --config ./drizzle.config.ts"
},
"eslintIgnore": [
"/node_modules",
"/build",
"/public/build",
"/playwright-report",
"/server-build"
],
"dependencies": {
"@conform-to/react": "^1.1.3",
"@conform-to/zod": "^1.1.3",
"@epic-web/cachified": "^5.2.0",
"@epic-web/client-hints": "^1.3.2",
"@epic-web/invariant": "^1.0.0",
"@headlessui/react": "^2.0.3",
"@heroicons/react": "^2.1.3",
"@mjackson/file-storage": "^0.2.0",
"@mjackson/form-data-parser": "^0.2.0",
"@mjackson/headers": "^0.7.2",
"@mjackson/lazy-file": "^3.1.0",
"@nasa-gcn/remix-seo": "^2.0.0",
"@radix-ui/react-slider": "^1.1.2",
"@remix-run/cloudflare": "2.9.2",
"@remix-run/cloudflare-pages": "^2.9.2",
"@remix-run/react": "2.9.2",
"@tailwindcss/vite": "^4.0.0-alpha.15",
"@uiw/color-convert": "^2.3.0",
"@uiw/react-color-editable-input-hsla": "^2.3.0",
"@uiw/react-color-hue": "^2.3.0",
"@uiw/react-color-saturation": "^2.3.0",
"@uiw/react-color-shade-slider": "^2.3.0",
"alea": "^1.0.1",
"clsx": "^2.1.1",
"cookie": "^0.6.0",
"crypto-js": "^4.2.0",
"drizzle-orm": "^0.31.2",
"eslint-plugin-remix-react-routes": "^1.0.5",
"fathom-client": "^3.6.0",
"framer-motion": "^11.1.9",
"isbot": "^5.1.6",
"nanoid": "^5.0.7",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"remix-utils": "^7.6.0",
"shiki": "^1.4.0",
"simplex-noise": "^4.0.3",
"sonner": "^1.4.41",
"spin-delay": "^2.0.0",
"tldraw": "^2.4.5",
"wrangler": "^3.57.1",
"zod": "^3.23.7"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20240903.0",
"@epic-web/config": "^1.11.2",
"@faker-js/faker": "^7.5.0",
"@remix-run/dev": "2.9.2",
"@sly-cli/sly": "^1.10.0",
"@types/crypto-js": "^4.2.2",
"@types/eslint": "^8.4.6",
"@types/fs-extra": "^11.0.4",
"@types/morgan": "^1.9.9",
"@types/node": "^20.12.12",
"@types/react": "^18.0.25",
"@types/react-dom": "^18.0.8",
"@vitejs/plugin-react": "^2.1.0",
"autoprefixer": "^10.4.11",
"c8": "^7.12.0",
"drizzle-kit": "^0.22.8",
"esbuild": "^0.21.2",
"eslint": "^9.4.0",
"execa": "^8.0.1",
"fs-extra": "^11.2.0",
"morgan": "^1.10.0",
"node-html-parser": "^6.1.13",
"npm": "^10.7.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.3.2",
"prettier-plugin-tailwindcss": "^0.6.5",
"remix-development-tools": "^4.6.0",
"remix-flat-routes": "^0.6.4",
"tailwindcss": "^4.0.0-alpha.15",
"tsx": "^4.9.3",
"typescript": "^5.4.5",
"vite": "^5.2.11",
"vite-tsconfig-paths": "^4.3.2"
},
"engines": {
"node": "20"
},
"prettier": "@epic-web/config/prettier"
}