-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 823 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 823 Bytes
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
{
"name": "spe-tutorial",
"private": true,
"version": "0.1.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"preview": "bun run build && wrangler dev",
"test": "vitest run",
"test:watch": "vitest",
"test:spe": "NODE_TLS_REJECT_UNAUTHORIZED=0 vitest run --config vitest.integration.config.ts",
"deploy": "bun run build && wrangler deploy"
},
"dependencies": {
"@cloudflare/vite-plugin": "^1.26.1",
"js-yaml": "^4.1.0",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"wrangler": "^4.71.0"
},
"devDependencies": {
"@types/js-yaml": "^4.0.9",
"@types/react": "^19.1.0",
"@types/react-dom": "^19.1.0",
"@vitejs/plugin-react": "^4.4.1",
"typescript": "~5.8.3",
"vite": "^6.3.5",
"vitest": "^3.2.1"
}
}