-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.52 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.52 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
{
"name": "digital-public-infra-map",
"type": "module",
"version": "0.0.1",
"scripts": {
"start": "astro dev",
"test": "astro build && npm run links",
"dev": "astro dev",
"build": "astro build",
"preview": "astro preview",
"astro": "astro",
"links": "npx linkinator ./dist --recurse --timeout 1000 --skip 'https' --verbosity error",
"data": "DATE=${DATE:=$(date +'%Y-%m-%d')} && mkdir \"./public/data/$DATE\" && run-p data:*",
"data:identity": "DATE=${DATE:=$(date +'%Y-%m-%d')} && curl -Ss --output ./public/data/$DATE/$DATE-identity.json http://localhost:4321/api/identity.json",
"data:payment": "DATE=${DATE:=$(date +'%Y-%m-%d')} && curl -Ss --output ./public/data/$DATE/$DATE-payment.json http://localhost:4321/api/payment.json",
"data:exchange": "DATE=${DATE:=$(date +'%Y-%m-%d')} && curl -Ss --output ./public/data/$DATE/$DATE-exchange.json http://localhost:4321/api/exchange.json"
},
"dependencies": {
"@ascorbic/csv-loader": "^2.0.3",
"@astrojs/mdx": "^4.3.0",
"@tailwindcss/typography": "^0.5.16",
"@tailwindcss/vite": "^4.1.11",
"astro": "^5.9.1",
"d3-geo": "^3.1.1",
"d3-geo-projection": "^4.0.0",
"google-spreadsheet": "^5.0.2",
"sharp": "^0.34.2",
"slug": "^10.0.0",
"tailwindcss": "^4.1.11",
"topojson-client": "^3.1.0",
"world-atlas": "^2.0.2"
},
"devDependencies": {
"@types/d3-geo": "^3.1.0",
"@types/slug": "^5.0.9",
"@types/topojson-client": "^3.1.5",
"linkinator": "^6.1.2",
"npm-run-all2": "^8.0.4"
}
}