forked from cloudflare/cloudflare-docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.61 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
{
"private": true,
"version": "1.0.0",
"name": "cloudflare-docs",
"repository": "cloudflare/cloudflare-docs",
"description": "Cloudflare Developer Docs",
"scripts": {
"algolia-crawl": "node bin/algolia-crawl.js",
"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": {
"fromnow": "3.0.1",
"mermaid": "9.1.7",
"node-html-parser": "6.1.6",
"vue": "^3.2.45"
},
"devDependencies": {
"@cloudflare/workers-types": "^3.17.0",
"@types/glob": "^8.0.1",
"@types/mermaid": "^9.2.0",
"@types/node": "^18.11.12",
"@types/prettier": "2.4.3",
"@types/prismjs": "^1.26.0",
"@vitejs/plugin-vue": "^4.0.0",
"@vue/tsconfig": "^0.1.3",
"concurrently": "^7.6.0",
"glob": "^8.1.0",
"html-rewriter-wasm": "^0.4.1",
"parse-numeric-range": "^1.3.0",
"prettier": "2.5.1",
"prismjs": "^1.29.0",
"tsm": "2.2.2",
"typescript": "~4.7.4",
"vite": "^4.0.0",
"vue-tsc": "^1.0.12",
"wrangler": "^3.1.1"
},
"volta": {
"node": "18.10.0"
},
"type": "module"
}