forked from cloudflare/cloudflare-docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.7 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"private": true,
"version": "1.0.0",
"name": "cloudflare-docs",
"repository": "cloudflare/cloudflare-docs",
"description": "Cloudflare Developer Docs",
"scripts": {
"check-types": "tsc --noEmit",
"crawl-api-links": "node bin/crawl-api-links.js",
"dev:hugo": "hugo --environment development -D -w",
"dev:wrangler": "wrangler pages dev -- vite",
"dev:vite": "vite",
"dev": "concurrently --kill-others \"npm run dev:hugo\" \"npm run dev:vite\"",
"lint": "tsm bin/format.ts --check",
"crawl": "tsm bin/crawl.ts",
"build:hugo": "hugo",
"build:vite": "vite build",
"build:post": "npm run build:vite && mv public/dist dist && cp -nr public/. dist/ && rm -rf public && mv dist public",
"build": "npm run build:hugo && npm run build:post",
"build:local": "./hugo && npm run build:post"
},
"dependencies": {
"algoliasearch": "^4.24.0",
"fromnow": "3.0.1",
"instantsearch.js": "^4.73.0",
"mermaid": "^10.9.1",
"node-html-parser": "6.1.13",
"vue": "^3.4.31"
},
"devDependencies": {
"@cloudflare/workers-types": "4.20240620.0",
"@tsconfig/node20": "^20.1.4",
"@types/glob": "^8.1.0",
"@types/node": "^20.14.10",
"@types/prettier": "2.7.3",
"@types/prismjs": "^1.26.4",
"@vitejs/plugin-vue": "^5.0.5",
"@vue/tsconfig": "^0.5.1",
"concurrently": "^8.2.2",
"glob": "^10.4.3",
"html-rewriter-wasm": "^0.4.1",
"lz-string": "^1.5.0",
"parse-numeric-range": "^1.3.0",
"prettier": "3.3.2",
"prismjs": "^1.29.0",
"tsm": "2.3.0",
"typescript": "~5.5.3",
"vite": "^5.3.3",
"vue-tsc": "^2.0.26",
"wrangler": "3.63.1"
},
"volta": {
"node": "20.15.0"
},
"type": "module"
}