-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.66 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.66 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
{
"name": "hoop",
"version": "0.5.5",
"description": "",
"author": "defnone",
"license": "MIT",
"workspaces": [
"./server",
"./client",
"./shared",
"./trakt-proxy"
],
"scripts": {
"dev:client": "cd client && bun run dev",
"dev:server": "cd server && bun run dev",
"dev:shared": "cd shared && bun run dev",
"dev:trakt": "cd trakt-proxy && bun run dev",
"dev": "overmind start",
"build:client": "cd client && bun run build",
"build:shared": "cd shared && bun run build",
"build:server": "cd server && bun run build",
"build": "bun run build:shared && bun run build:client && bun run build:server",
"copy:static": "mkdir -p build && rm -rf build/static && cp -r client/dist build/static",
"build:single": "bun run build && bun build ./server/src/index.ts --target=bun --production --minify --outfile=./build/server.js && bun run copy:static",
"start:single": "cd build && NODE_ENV=production bun server.js",
"postinstall": "bun run build:shared && bun run build:server",
"lint": "sh -c 'cd client && bun run lint && cd ../server && bun run lint && cd ../shared && bun run lint'",
"test:server": "cd server && bunx vitest --coverage",
"test:client": "cd client && bunx vitest --coverage",
"test:shared": "cd shared && bunx vitest --coverage",
"test": "bun run test:server && bun run test:client && bun run test:shared"
},
"keywords": [
"bun",
"hono",
"react",
"vite",
"monorepo"
],
"devDependencies": {
"bun-osv-scanner": "2.0.0",
"bun-types": "1.3.11"
},
"peerDependencies": {
"typescript": "^5.9.3"
},
"dependencies": {
"hono": "4.12.18"
}
}