forked from ethersphere/bee-docs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.52 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.52 KB
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
{
"name": "bee-docs",
"version": "0.0.0",
"private": true,
"config": {
"linkchecker": "blc -ro --filter-level 0 --exclude swarm.ethereum.org --exclude gateway.ethswarm.org --exclude discord.gg --exclude etherscan.io --exclude awesome.re --exclude swarm.eth --exclude localhost:1633 --exclude localhost:9090 --exclude localhost:1635 --exclude 192.168.0.1 --exclude 127.0.0.1"
},
"scripts": {
"docusaurus": "docusaurus",
"start": "docusaurus start",
"build": "docusaurus build",
"swizzle": "docusaurus swizzle",
"deploy": "docusaurus deploy",
"serve": "docusaurus serve",
"linkchecker": "start-server-and-test serve :3000 linkchecker:local",
"linkchecker:local": "$npm_package_config_linkchecker http://localhost:3000/docs",
"linkchecker:prod": "$npm_package_config_linkchecker https://docs.ethswarm.org/docs/"
},
"dependencies": {
"@docusaurus/core": "^2.0.0-alpha.71",
"@docusaurus/preset-classic": "^2.0.0-alpha.71",
"@mdx-js/react": "^1.6.22",
"clsx": "^1.1.1",
"docusaurus-lunr-search": "^2.1.10",
"react": "^16.8.4",
"react-dom": "^16.8.4",
"swarm-cli": "^1.2.2"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"engines": {
"node": ">=14.0.0",
"npm": ">=6.0.0"
},
"devDependencies": {
"broken-link-checker": "^0.7.8",
"start-server-and-test": "^1.12.3"
}
}