forked from Protonull/IceniaGov2023
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 2.1 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 2.1 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": "iceniagov",
"type": "module",
"version": "0.0.1",
"scripts": {
"dev": "bunx astro dev",
"start": "bunx astro dev",
"sync-officials": "bun run sync-officials.ts",
"update-avatars": "bun run update-avatars.ts",
"scrape-council-records": "bun run scraper-council-records.ts",
"scrape-senate-records": "bun run scraper-senate-records.ts",
"clean-scraped-items": "bun run clean-scraped-items.ts",
"download-tiles": "bun run download-tiles.ts",
"full-sync": "bun run sync-officials.ts && bun run update-avatars.ts && bun run scraper-council-records.ts && bun run scraper-senate-records.ts && bun run clean-scraped-items.ts && bun run download-tiles.ts",
"build": "bun --env-file=.env astro build --verbose",
"check": "bun astro check",
"hard-reset": "rimraf node_modules .astro dist .venv && npm install",
"fresh-build": "bun run hard-reset && bun run build",
"preview": "bunx astro preview",
"astro": "bunx astro"
},
"dependencies": {
"@astrojs/check": "^0.8.1",
"@bramus/pagination-sequence": "^1.2.1",
"@rollup/plugin-yaml": "^4.1.2",
"@types/bramus__pagination-sequence": "^1.2.2",
"@types/bun": "^1.1.6",
"@types/d3": "^7.4.3",
"@types/dateformat": "^5.0.2",
"astro": "^4.11.5",
"d3": "^7.9.0",
"dateformat": "^5.0.3",
"decap-server": "^3.0.4",
"discord.js": "^14.25.1",
"echarts": "^6.0.0",
"gray-matter": "^4.0.3",
"libreoffice-convert": "^1.7.0",
"marked": "^13.0.2",
"sanitize.css": "^13.0.0",
"string-strip-html": "^13.4.8"
},
"devDependencies": {
"@types/dotenv": "^8.2.0",
"@types/js-yaml": "^4.0.9",
"rimraf": "^6.1.2"
},
"trustedDependencies": [
"astro",
"sharp"
],
"installConfig": {
"supportedArchitectures": {
"os": [
"linux",
"win32"
],
"cpu": [
"x64"
]
}
}
}