forked from DJChanahCJD/OtterHub
-
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.05 KB
/
Copy pathpackage.json
File metadata and controls
33 lines (33 loc) · 1.05 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": "otterhub-monorepo",
"version": "0.1.0",
"private": true,
"workspaces": [
"frontend",
"shared",
"functions"
],
"scripts": {
"dev": "concurrently \"npm run dev:backend\" \"npm run dev:frontend\" ",
"dev:frontend": "npm run dev --prefix frontend",
"dev:backend": "npx wrangler pages dev frontend/out --kv \"oh_file_url\" --r2 \"oh_file_r2\" --binding PASSWORD=123456 --binding API_TOKEN=123456 --ip 0.0.0.0 --port 8080 --persist-to ./data",
"build": "npm run build --prefix frontend",
"lint": "npm run lint --prefix frontend",
"typecheck": "npm run typecheck --prefix frontend",
"ci-test": "concurrently -k -s first \"npm run dev:backend\" \"wait-on http://localhost:8080 && mocha --exit\""
},
"devDependencies": {
"concurrently": "^8.2.2",
"mocha": "^10.6.0",
"wait-on": "^7.2.0",
"wrangler": "^4.24.0"
},
"dependencies": {
"@hono/zod-validator": "^0.7.6",
"@zip.js/zip.js": "^2.8.26",
"hono": "^4.11.7",
"jose": "^6.1.3",
"uuid": "^13.0.0",
"zod": "^4.3.6"
}
}