forked from btcpayserver/btcpayserver-doc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.31 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
{
"name": "btcpayserver-docs",
"version": "1.0.0",
"description": "BTCPay Server Official Documentation",
"author": "BTCPay Server",
"license": "MIT",
"bugs": "https://github.com/btcpayserver/btcpayserver-doc/issues",
"homepage": "https://github.com/btcpayserver/btcpayserver-doc",
"repository": {
"type": "git",
"url": "git+https://github.com/btcpayserver/btcpayserver-doc.git"
},
"keywords": [
"btcpayserver"
],
"config": {
"dist": "docs/.vuepress/dist",
"port": "8080"
},
"scripts": {
"prestart": "rm -rf $npm_package_config_dist",
"start": "NODE_ENV=development vuepress dev docs -p $npm_package_config_port",
"build": "NODE_ENV=production vuepress build docs",
"netlify": "./setup-deps.sh && npm run build",
"test": "jest",
"redirects": "node create-redirects.js"
},
"devDependencies": {
"@redocly/cli": "1.0.0-beta.120",
"@vuepress/plugin-back-to-top": "1.9.8",
"@vuepress/plugin-medium-zoom": "1.9.8",
"esm": "3.2.25",
"jest": "28.1.3",
"markdown-it-implicit-figures": "0.10.0",
"markdown-it-include": "2.0.0",
"swagger-cli": "4.0.4",
"vuepress": "1.9.8",
"vuepress-plugin-clean-urls": "1.1.2",
"vuepress-plugin-code-copy": "1.0.6",
"vuepress-plugin-seo": "0.2.0",
"vuepress-plugin-sitemap": "2.3.1"
}
}