-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
54 lines (54 loc) · 1.59 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
{
"name": "justd-remix-sk",
"private": true,
"sideEffects": false,
"type": "module",
"scripts": {
"build": "remix vite:build",
"deploy": "bun run build && wrangler pages deploy",
"dev": "remix vite:dev",
"lint": "eslint --ignore-path .gitignore --cache --cache-location ./node_modules/.cache/eslint .",
"start": "wrangler pages dev ./build/client",
"typecheck": "tsc",
"typegen": "wrangler types",
"preview": "bun run build && wrangler pages dev",
"cf-typegen": "wrangler types",
"tailwind:format": "rustywind --write ./app",
"format": "bun run tailwind:format && biome check --write",
"format:unsafe": "biome check --unsafe --write"
},
"dependencies": {
"@remix-run/cloudflare": "^2.15.1",
"@remix-run/react": "^2.15.1",
"@remix-run/serve": "^2.15.1",
"cmdk": "^1.0.4",
"input-otp": "^1.4.1",
"isbot": "^4.4.0",
"justd-icons": "^1.10.4",
"motion": "^11.15.0",
"react": "^19.0.0",
"react-aria-components": "^1.5.0",
"react-dom": "^19.0.0",
"remix-themes": "^1.5.1",
"sonner": "^1.7.1",
"tailwind-merge": "^2.5.5",
"tailwind-variants": "^0.2.1",
"tailwindcss": "^4.0.0-beta.8",
"tailwindcss-animate": "^1.0.7"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@remix-run/dev": "^2.15.1",
"@tailwindcss/vite": "^4.0.0-beta.8",
"@types/react": "^19.0.2",
"@types/react-dom": "^19.0.2",
"rustywind": "^0.23.1",
"typescript": "^5.7.2",
"vite": "^6.0.4",
"vite-tsconfig-paths": "^4.3.2",
"wrangler": "^3.98.0"
},
"engines": {
"node": ">=20.0.0"
}
}