-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.48 KB
/
Copy pathpackage.json
File metadata and controls
44 lines (44 loc) · 1.48 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
{
"name": "bars-core",
"version": "2.0.0",
"private": true,
"scripts": {
"deploy": "wrangler deploy",
"dev": "wrangler dev",
"typegen": "wrangler types",
"update-db-local": "wrangler d1 execute bars-db --local --file schema.sql",
"update-db": "wrangler d1 execute bars-db --remote --file schema.sql",
"prettify": "prettier --write .",
"build": "wrangler build",
"benchmark": "bun run benchmark:routes && bun run benchmark:database && bun run benchmark:compute && bun run benchmark:realtime && bun run benchmark:backend",
"benchmark:routes": "bun benchmarks/routes.ts",
"benchmark:database": "bun benchmarks/database.ts",
"benchmark:compute": "bun benchmarks/compute.ts",
"benchmark:realtime": "bun benchmarks/realtime.ts",
"benchmark:backend": "bun benchmarks/backend.ts",
"test:realtime": "bun benchmarks/realtime-behavior.ts",
"test:backend": "bun benchmarks/backend-behavior.ts",
"benchmark:smoke": "bun benchmarks/smoke.ts",
"openapi": "node scripts/generate-openapi.mjs && prettier --write data/openapi.json",
"lint": "eslint . --fix"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"@types/node": "^24.10.9",
"@types/swagger-jsdoc": "^6.0.4",
"eslint": "^9.39.2",
"globals": "^16.5.0",
"jiti": "^2.6.1",
"prettier": "^3.8.0",
"ts-node": "^10.9.2",
"typescript": "^5.9.3",
"typescript-eslint": "^8.53.0",
"wrangler": "^4.112.0"
},
"dependencies": {
"geolib": "^3.3.4",
"hono": "^4.11.4",
"nanoid": "^5.1.6",
"swagger-jsdoc": "^6.2.8"
}
}