-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 961 Bytes
/
Copy pathpackage.json
File metadata and controls
40 lines (40 loc) · 961 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
32
33
34
35
36
37
38
39
40
{
"name": "airescheduler",
"version": "1.0.0",
"description": "AI-powered flight lesson rescheduler using Cloudflare Workers",
"type": "module",
"scripts": {
"dev": "wrangler dev",
"build": "vite build",
"deploy": "wrangler deploy",
"lint": "tsc --noEmit",
"types": "wrangler types"
},
"keywords": [
"cloudflare-workers",
"ai",
"scheduling"
],
"author": "",
"license": "ISC",
"dependencies": {
"@cloudflare/kv-asset-handler": "^0.4.0",
"@tailwindcss/postcss": "^4.1.17",
"@types/node": "^24.10.0",
"hono": "^4.10.4",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"zod": "^4.1.12"
},
"devDependencies": {
"@types/react": "^19.2.2",
"@types/react-dom": "^19.2.2",
"@vitejs/plugin-react": "^5.1.0",
"autoprefixer": "^10.4.21",
"postcss": "^8.5.6",
"tailwindcss": "^4.1.17",
"typescript": "^5.9.3",
"vite": "^7.2.2",
"wrangler": "^4.46.0"
}
}