-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1.4 KB
/
package.json
File metadata and controls
35 lines (35 loc) · 1.4 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
{
"name": "startup-agent",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "vite --host 0.0.0.0",
"build": "tsc && vite build",
"preview": "vite preview --host 0.0.0.0",
"data:update": ".agent_venv/bin/python -m pipeline update",
"data:probe-sources": ".agent_venv/bin/python -m pipeline probe-sources",
"data:discover-seeds": ".agent_venv/bin/python -m pipeline discover-seeds",
"data:enrich-public": ".agent_venv/bin/python -m pipeline enrich-public",
"data:enrich-signals": ".agent_venv/bin/python -m pipeline enrich-signals",
"data:enrich-private": ".agent_venv/bin/python -m pipeline enrich-private",
"data:extract-public-customers": ".agent_venv/bin/python -m pipeline extract-public-customers",
"data:classify-public-business": ".agent_venv/bin/python -m pipeline classify-public-business",
"data:enrich-sentiment": ".agent_venv/bin/python -m pipeline enrich-sentiment",
"data:init-db": ".agent_venv/bin/python -m pipeline init-db",
"data:test": ".agent_venv/bin/python -m unittest discover -s src/data/scripts/tests"
},
"dependencies": {
"china-geojson": "^1.0.0",
"d3": "^7.9.0",
"topojson-client": "^3.1.0",
"us-atlas": "^3.0.1",
"vite": "^7.0.0",
"world-atlas": "^2.0.2"
},
"devDependencies": {
"@types/d3": "^7.4.3",
"@types/topojson-client": "^3.1.5",
"typescript": "^5.8.0"
}
}