-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
42 lines (42 loc) · 1.81 KB
/
package.json
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
{
"name": "gmodwiki",
"type": "module",
"version": "0.0.1",
"scripts": {
"dev": "astro dev",
"build": "node --no-warnings=ExperimentalWarning --loader ts-node/esm ./build/index.ts",
"astrobuild": "astro build",
"preview": "astro preview",
"pages:dev": "wrangler pages dev --compatibility-date=2024-01-29 -- astro dev",
"pages:deploy": "astro build && wrangler pages deploy ./dist",
"get_used_mdis": "rg -Io \"mdi-[\\w-]+\" ./build/cache/ | sort | uniq",
"upload_caches": "/bin/bash ./build/modules/upload_caches.sh",
"upload_categories": "/bin/bash ./build/modules/categories/upload_categories.sh",
"build_categories": "node --no-warnings=ExperimentalWarning --trace-uncaught --trace-warnings --loader ts-node/esm ./build/modules/categories/build_categories.ts",
"clear_recent_changes": "node --no-warnings=ExperimentalWarning --trace-uncaught --trace-warnings --loader ts-node/esm ./build/modules/clear_recent_changes.ts",
"clear_cloudflare_cache": "node --no-warnings=ExperimentalWarning --trace-uncaught --trace-warnings --loader ts-node/esm ./build/modules/clear_cloudflare_cache.ts"
},
"devDependencies": {
"@astrojs/check": "^0.4.1",
"@astrojs/cloudflare": "^9.0.0",
"@astrojs/internal-helpers": "^0.2.1",
"@astrojs/node": "^8.2.0",
"@cloudflare/workers-types": "^4.20240129.0",
"@types/cheerio": "^0.22.35",
"@types/html-minifier": "^4.0.5",
"@types/minify": "^9.1.4",
"@types/node": "^20.11.16",
"astro": "^4.3.2",
"bottleneck": "^2.19.5",
"chalk": "^5.3.0",
"cheerio": "^1.0.0-rc.12",
"gmod-wiki-scraper": "github:NullEnt1ty/gmod-wiki-scraper",
"html-minifier": "^4.0.0",
"ky": "^1.2.0",
"minify": "^11.0.1",
"sharp": "^0.33.2",
"ts-node": "^10.9.2",
"typescript": "^5.3.3",
"wrangler": "^3.30.1"
}
}