-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 1.07 KB
/
Copy pathpackage.json
File metadata and controls
33 lines (33 loc) · 1.07 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
{
"name": "code-koans",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"dev:worker": "npm run build && wrangler dev",
"build": "tsc --noEmit --incremental false -p tsconfig.app.json && tsc --noEmit --incremental false -p tsconfig.node.json && tsc --noEmit --incremental false -p tsconfig.worker.json && vite build",
"deploy": "npm run build && wrangler deploy",
"preview": "vite preview",
"worker:typecheck": "tsc --noEmit --incremental false -p tsconfig.worker.json",
"d1:migrate:local": "wrangler d1 migrations apply DB --local",
"d1:migrate:remote": "wrangler d1 migrations apply DB --remote",
"test": "vitest run"
},
"dependencies": {
"react": "^19.1.0",
"react-dom": "^19.1.0",
"react-router-dom": "^7.6.0",
"vega": "^6.2.0",
"vega-embed": "^7.1.0"
},
"devDependencies": {
"@types/react": "^19.1.2",
"@types/react-dom": "^19.1.2",
"@vitejs/plugin-react": "^4.4.1",
"typescript": "^5.8.3",
"vite": "^6.3.5",
"vitest": "^3.2.4",
"wrangler": "^4.75.0"
}
}