-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 1.17 KB
/
Copy pathpackage.json
File metadata and controls
28 lines (28 loc) · 1.17 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
{
"name": "continuity-tracker",
"version": "0.1.0",
"private": true,
"type": "module",
"description": "Continuity-first parasocial animal tracker over the Movebank API. Engineers continuity of attachment across the discontinuity of the data.",
"engines": {
"node": ">=24.0.0"
},
"scripts": {
"start": "node --disable-warning=ExperimentalWarning src/server/app.ts",
"ingest": "node --disable-warning=ExperimentalWarning src/ingestion/run.ts",
"schedule": "node --disable-warning=ExperimentalWarning src/ingestion/scheduler.ts",
"seed": "node --disable-warning=ExperimentalWarning src/ingestion/run.ts --seed",
"curate": "node --disable-warning=ExperimentalWarning src/roster/report.ts",
"live:check": "node --disable-warning=ExperimentalWarning src/movebank/live-check.ts",
"static": "node --disable-warning=ExperimentalWarning scripts/build-static.mjs",
"shots": "node scripts/shots.mjs",
"typecheck": "tsc --noEmit",
"test": "node --disable-warning=ExperimentalWarning --test \"test/*.test.ts\""
},
"devDependencies": {
"@types/node": "^24.0.0",
"playwright": "^1.61.1",
"typescript": "^5.9.0"
},
"license": "MIT"
}