-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
24 lines (24 loc) · 803 Bytes
/
package.json
File metadata and controls
24 lines (24 loc) · 803 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
{
"name": "enphasy",
"scripts": {
"dev": "bun run --hot src/index.ts",
"start": "bun run src/index.ts",
"build": "bun build src/index.ts --outdir=dist --target=bun",
"test": "bun test",
"docker-build": "docker buildx build --platform linux/amd64,linux/arm64 -t drarox/enphasy:latest --load .",
"docker-build-deploy": "docker buildx build --platform linux/amd64,linux/arm64 -t drarox/enphasy:latest --push .",
"test-build-deploy": "bun run test && bun run docker-build-deploy"
},
"dependencies": {
"@hono/zod-validator": "^0.7.0",
"@scalar/hono-api-reference": "^0.9.4",
"croner": "^9.0.0",
"hono": "^4.7.11",
"hono-openapi": "^0.4.8",
"zod": "^3.25.64",
"zod-openapi": "^4.2.4"
},
"devDependencies": {
"@types/bun": "latest"
}
}