-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.45 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.45 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
{
"name": "d3bu.net",
"version": "3.0.0",
"private": true,
"sideEffects": false,
"type": "module",
"scripts": {
"prepare": "panda codegen",
"build": "remix vite:build",
"check": "run-p typecheck lint",
"dev": "remix vite:dev",
"format": "biome format --write .",
"lint": "biome check .",
"start": "cross-env NODE_ENV=production bun run ./build/server/index.js",
"typecheck": "tsc"
},
"dependencies": {
"@icons-pack/react-simple-icons": "^9.4.0",
"@remix-run/node": "^2.8.1",
"@remix-run/react": "^2.8.1",
"fast-deep-equal": "^3.1.3",
"hono": "^4.1.3",
"html-react-parser": "^5.1.10",
"isbot": "^5.1.1",
"jotai": "^2.7.2",
"katex": "^0.16.10",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"remix-hono": "^0.0.16",
"sanitize.css": "^13.0.0"
},
"devDependencies": {
"@biomejs/biome": "^1.6.4",
"@mdx-js/rollup": "^3.0.1",
"@pandacss/dev": "^0.37.2",
"@remix-run/dev": "^2.8.1",
"@types/react": "^18.2.64",
"@types/react-dom": "^18.2.21",
"cross-env": "^7.0.3",
"esbuild": "^0.20.1",
"npm-run-all": "^4.1.5",
"postcss-lightningcss": "^1.0.0",
"rehype-katex": "^7.0.0",
"remark-frontmatter": "^5.0.0",
"remark-math": "^6.0.0",
"remark-mdx-frontmatter": "^4.0.0",
"typescript": "^5.4.2",
"vite": "^5.1.6",
"vite-env-only": "^2.2.1"
},
"trustedDependencies": ["core-js"],
"engines": {
"node": ">=20"
}
}