-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
60 lines (60 loc) · 1.8 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
57
58
59
60
{
"name": "@arcblock/abtnode-docs",
"version": "0.6.5",
"description": "Blocklet Server Documentation, a help documentation for quickly get started with Blocklet Server.",
"main": "index.js",
"publishConfig": {
"access": "public"
},
"files": [
"public/",
"screenshots/",
"blocklet.md"
],
"directories": {
"doc": "docs"
},
"keywords": [
"Docs",
"ABTNode"
],
"scripts": {
"clean": "rm -rf public .cache .blocklet",
"start": "gatsby develop --host 0.0.0.0",
"build": "NODE_ENV=production GATSBY_APP_DOMAIN=docs.arcblock.io gatsby build",
"build:gatsby": "gatsby build --prefix-paths && rm public/*.map",
"build:dir": "mv public public_tmp && mkdir public && mv public_tmp public/abtnode",
"bundle": "npm run clean && npm run build:gatsby && npm run build:dir && blocklet bundle --create-release",
"deploy": "npm run bundle && blocklet deploy .blocklet/bundle --skip-hooks",
"serve": "gatsby serve"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ArcBlock/abtnode-docs.git"
},
"author": "wangshijun <[email protected]> (http://github.com/wangshijun)",
"license": "MIT",
"bugs": {
"url": "https://github.com/ArcBlock/abtnode-docs-power-user/issues"
},
"homepage": "https://github.com/ArcBlock/abtnode-docs-power-user#readme",
"dependencies": {
"@arcblock/gatsby-i18n-redirect": "^7.33.1",
"@arcblock/gatsby-theme-docs": "^7.34.4",
"axios": "^0.21.1",
"fs-extra": "^8.1.0",
"gatsby": "2.24.8",
"gatsby-plugin-netlify-cache": "^1.2.0",
"gray-matter": "^4.0.2",
"hast-util-select": "^3.0.1",
"mdast-util-to-hast": "^6.0.2",
"remark": "^11.0.1",
"yaml": "^1.7.0"
},
"devDependencies": {
"gh-pages": "^2.1.1"
},
"resolutions": {
"sharp": "^0.28.0"
}
}