-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.11 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 2.11 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
{
"name": "tips",
"private": true,
"type": "module",
"packageManager": "pnpm@10.33.0",
"imports": {
"#/*": "./src/*"
},
"scripts": {
"build": "vp build",
"check": "vp check --fix",
"check:types": "tsc --noEmit",
"db:init": "wrangler d1 migrations apply tips --local && pnpm sync",
"deploy": "npm run build && wrangler deploy",
"dev": "vite dev --port 3000",
"gen:types": "wrangler types",
"postinstall": "npm run gen:types",
"prebuild": "node --import=tsx scripts/gen-robots.ts",
"preview": "npm run build && vp preview",
"sync": "node --env-file=.env --import=tsx scripts/sync.ts",
"test": "vp test run"
},
"dependencies": {
"@cloudflare/puppeteer": "^1.0.6",
"@cloudflare/vite-plugin": "^1.31.2",
"@mdx-js/mdx": "^3.1.1",
"@shikijs/engine-javascript": "^4.0.2",
"@tailwindcss/vite": "^4.1.18",
"@takumi-rs/wasm": "^0.73.1",
"@tanstack/react-devtools": "^0.7.0",
"@tanstack/react-router": "^1.132.0",
"@tanstack/react-router-devtools": "^1.132.0",
"@tanstack/react-router-ssr-query": "^1.131.7",
"@tanstack/react-start": "^1.132.0",
"@tanstack/router-plugin": "^1.132.0",
"lucide-react": "^0.545.0",
"nuqs": "^2.8.9",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"rehype-katex": "^7.0.1",
"rehype-raw": "^7.0.0",
"rehype-stringify": "^10.0.1",
"remark-gfm": "^4.0.1",
"remark-math": "^6.0.0",
"remark-parse": "^11.0.0",
"remark-rehype": "^11.1.2",
"shiki": "^4.0.2",
"tailwindcss": "^4.1.18",
"takumi-js": "^1.0.0-rc.16",
"unified": "^11.0.5",
"unist-util-visit": "^5.1.0",
"zod": "^4.3.6"
},
"devDependencies": {
"@tanstack/devtools-vite": "^0.3.11",
"@testing-library/dom": "^10.4.0",
"@testing-library/react": "^16.2.0",
"@types/hast": "^3.0.4",
"@types/node": "^22.19.17",
"@types/react": "^19.2.0",
"@types/react-dom": "^19.2.0",
"@vitejs/plugin-react": "^5.0.4",
"jsdom": "^27.0.0",
"tsx": "^4.21.0",
"typescript": "^5.7.2",
"vite-plus": "0.1.16",
"vite-tsconfig-paths": "^5.1.4",
"wrangler": "^4.81.1"
}
}