-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.01 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 2.01 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
{
"name": "remix-spa-example",
"private": true,
"sideEffects": false,
"type": "module",
"scripts": {
"build": "react-router build",
"dev": "react-router dev",
"preview": "vite preview",
"lint": "biome lint .",
"format": "prettier --cache -c --experimental-cli .",
"format:fix": "prettier --cache -w --experimental-cli .",
"typecheck": "react-router typegen && tsc",
"validate": "pnpm run lint && pnpm run format && pnpm run typecheck",
"start": "npx sirv-cli build/client/ --single"
},
"dependencies": {
"@conform-to/react": "^1.15.1",
"@conform-to/zod": "^1.15.1",
"@react-router/node": "7.12.0",
"@tailwindcss/vite": "^4.1.18",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"dayjs": "^1.11.19",
"firebase": "^12.7.0",
"isbot": "^5.1.32",
"lucide-react": "^0.562.0",
"marked": "^17.0.1",
"next-themes": "^0.4.6",
"pure-uuid": "^2.0.0",
"radix-ui": "latest",
"react": "19.2.3",
"react-dom": "19.2.3",
"react-markdown": "^10.1.0",
"react-router": "7.12.0",
"react-router-dom": "7.12.0",
"react-twc": "^1.5.1",
"remix-flat-routes": "^0.8.5",
"sonner": "^2.0.7",
"tailwind-merge": "^3.4.0",
"tailwindcss-animate": "^1.0.7",
"zod": "^4.3.5"
},
"devDependencies": {
"@biomejs/biome": "^2.3.11",
"@mdx-js/rollup": "^3.1.1",
"@react-router/dev": "7.12.0",
"@react-router/remix-routes-option-adapter": "^7.12.0",
"@tailwindcss/typography": "^0.5.19",
"@types/react": "^19.2.8",
"@types/react-dom": "^19.2.3",
"firebase-tools": "^15.2.1",
"npm-run-all": "^4.1.5",
"prettier": "^3.7.4",
"prettier-plugin-organize-imports": "^4.3.0",
"prettier-plugin-tailwindcss": "^0.7.2",
"remark-frontmatter": "^5.0.0",
"remark-mdx-frontmatter": "^5.2.0",
"rollup-plugin-visualizer": "^6.0.5",
"tailwindcss": "^4.1.18",
"typescript": "^5.9.3",
"vite": "^7.3.1",
"vite-tsconfig-paths": "^6.0.4"
},
"engines": {
"node": ">=22.0.0"
}
}