-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.59 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.59 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
{
"name": "flow-state",
"version": "1.0.0",
"description": "Colorado river-flow forecasting app for rafters, built on Harper",
"type": "module",
"scripts": {
"agent:run": "npx -y @harperfast/agent@latest",
"agent:skills:update": "npx -y skills@latest add harperfast/skills --all --yes",
"start": "harper run .",
"dev": "harper dev .",
"lint": "eslint .",
"format": "prettier --write .",
"test": "npx tsx --test test/*.test.ts",
"test:watch": "npx tsx --watch --test test/*.test.ts",
"ui:dev": "vite",
"ui:build": "vite build",
"generate:geometries": "npx tsx scripts/generate-geometries.ts",
"build:rivers": "npx tsx scripts/build-rivers/index.ts",
"predeploy": "find .claude/worktrees -name web -type d -exec rm -rf {} + 2>/dev/null; echo 'Cleaned worktree build artifacts'",
"deploy": "dotenv -- npm run deploy:component",
"deploy:component": "harper deploy_component . restart=rolling replicated=true"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@harperfast/schema-codegen": "^1.0.10",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.1",
"dotenv-cli": "^11.0.0",
"eslint": "^10.0.2",
"globals": "^17.4.0",
"prettier": "^3.8.1",
"tsx": "^4.21.0",
"typescript": "^6.0.3",
"vite": "^8.0.8"
},
"dependencies": {
"@harperfast/oauth": "^1.4.0",
"@tanstack/react-query": "^5.99.1",
"@types/leaflet": "^1.9.21",
"harper": "^5.0.1",
"leaflet": "^1.9.4",
"maplibre-gl": "4.7.1",
"nanoid": "^5.1.9",
"react": "^19.2.5",
"react-dom": "^19.2.5",
"react-leaflet": "^5.0.0",
"react-router-dom": "^7.6.1"
}
}