-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.62 KB
/
Copy pathpackage.json
File metadata and controls
48 lines (48 loc) · 1.62 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
{
"name": "@sonory/api",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "wrangler dev --port 8787",
"prebuild": "npm run generate-types",
"build": "tsc && tsc-alias -p tsconfig-paths.json --resolve-full-paths",
"deploy": "wrangler deploy",
"deploy:staging": "wrangler deploy --env staging",
"deploy:production": "wrangler deploy --env production",
"export:openapi": "tsx scripts/export-openapi.ts",
"generate-types": "wrangler types",
"pretype-check": "npm run generate-types",
"lint": "oxlint src scripts",
"lint:fix": "oxlint src scripts --fix",
"format": "oxfmt --check .",
"format:fix": "oxfmt .",
"type-check": "tsc --noEmit",
"validate": "npm run lint && npm run type-check",
"test": "vitest --passWithNoTests",
"test:watch": "vitest --watch",
"precommit": "npm run lint:fix && npm run format:fix",
"clean": "rm -rf dist .wrangler"
},
"dependencies": {
"@hono/zod-openapi": "^1.4.0",
"@hono/zod-validator": "^0.8.0",
"@sentry/cloudflare": "^10.56.0",
"@sentry/hono": "^10.56.0",
"@sonory/shared-types": "file:../../packages/shared-types",
"@sonory/utils": "file:../../packages/utils",
"@supabase/supabase-js": "^2.108.0",
"hono": "^4.12.24",
"vite": "^7.3.5",
"zod": "^4.4.3"
},
"devDependencies": {
"@types/node": "^24.13.1",
"tsc-alias": "^1.8.17",
"tsx": "^4.22.4",
"typescript": "^5.9.3",
"vitest": "^4.1.8",
"vitest-environment-miniflare": "^2.14.4",
"wrangler": "^4.98.0"
}
}