-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 946 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 946 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
{
"name": "youhit",
"version": "0.0.1",
"private": true,
"description": "YouHit - Visualize your activity history as an interactive heatmap",
"scripts": {
"dev": "concurrently \"npm run dev:server\" \"npm run dev:client\"",
"dev:server": "cd server && npm run dev",
"dev:client": "cd client && npm run dev",
"dev:cf": "wrangler dev",
"build": "cd client && npm install && npm run build",
"build:server": "cd server && npm run build",
"deploy": "npm run build && wrangler deploy",
"cf:login": "wrangler login",
"cf:kv:create": "wrangler kv:namespace create SESSION_KV",
"install:all": "cd server && npm install && cd ../client && npm install"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20260316.1",
"concurrently": "^8.2.2",
"typescript": "^5.9.3",
"wrangler": "^4.74.0"
},
"dependencies": {
"hono": "^4.12.8"
},
"engines": {
"node": ">=18"
}
}