-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.03 KB
/
Copy pathpackage.json
File metadata and controls
37 lines (37 loc) · 1.03 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
{
"name": "zihui-notes",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "vinext dev --port 3002",
"build": "vite build",
"deploy": "vinext deploy",
"db:migrate": "wrangler d1 execute zihui-notes-db --local --file=migrations/0001_init.sql",
"db:seed": "wrangler d1 execute zihui-notes-db --local --file=migrations/0002_seed.sql",
"test": "vitest run",
"dev:vinext": "vite dev --port 3001",
"build:vinext": "vite build"
},
"dependencies": {
"next": "16.1.6",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"react-markdown": "^10.1.0",
"remark-gfm": "^4.0.1"
},
"devDependencies": {
"@cloudflare/vite-plugin": "^1.26.1",
"@cloudflare/workers-types": "^4.20260306.1",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"@vitejs/plugin-rsc": "^0.5.21",
"react-server-dom-webpack": "^19.2.4",
"typescript": "^5",
"vinext": "^0.0.22",
"vite": "^7.3.1",
"vitest": "^4.0.18",
"wrangler": "^4.71.0"
}
}