-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 2.22 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 2.22 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
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "glidecomp",
"version": "1.0.0",
"private": true,
"license": "MIT",
"author": "Tushar Pokle",
"description": "Hanggliding/paragliding competition track log analysis",
"keywords": ["hanggliding", "paragliding", "igc", "competition", "scoring", "flight-analysis"],
"homepage": "https://glidecomp.com",
"repository": {
"type": "git",
"url": "https://github.com/pokle/glidecomp.git"
},
"bugs": {
"url": "https://github.com/pokle/glidecomp/issues"
},
"type": "module",
"scripts": {
"dev": "[ -d node_modules ] || bun install && bun run dev:auth & bun run --filter '@glidecomp/frontend' dev",
"dev:frontend": "bun run --filter '@glidecomp/frontend' dev",
"build": "bun run --filter '@glidecomp/frontend' build",
"deploy": "bun run --filter '@glidecomp/frontend' deploy",
"dev:auth": "bun run --filter auth-api dev",
"deploy:worker": "bun run --filter airscore-api deploy",
"deploy:auth": "bun run --filter auth-api deploy",
"deploy:all": "bun run deploy && bun run deploy:worker",
"deployments": "wrangler pages deployment list --project-name=glidecomp --json | jq .",
"typecheck": "tsc --noEmit",
"typecheck:engine": "tsc --noEmit -p web/engine/tsconfig.json",
"typecheck:worker": "bun run --filter airscore-api typecheck",
"typecheck:auth": "bun run --filter auth-api typecheck",
"typecheck:all": "bun run typecheck && bun run typecheck:engine && bun run typecheck:worker && bun run typecheck:auth",
"test": "bun test",
"detect-events": "bun web/engine/cli/detect-events.ts",
"get-xcontest-task": "bun web/engine/cli/get-xcontest-task.ts",
"score-task": "bun web/engine/cli/score-task.ts"
},
"workspaces": [
"web/engine",
"web/frontend",
"web/samples",
"web/workers/*"
],
"devDependencies": {
"@cloudflare/workers-types": "^4.20260329.1",
"@types/bun": "^1.3.11",
"@types/node": "^25.5.0",
"typescript": "^6.0.2",
"wrangler": "^4.78.0"
},
"engines": {
"node": ">=20"
},
"dependencies": {
"@fontsource/atkinson-hyperlegible-next": "^5.2.7",
"mapbox-gl": "^3.20.0",
"threebox-plugin": "^2.2.7"
},
"patchedDependencies": {
"kysely-d1@0.4.0": "patches/kysely-d1@0.4.0.patch"
}
}