forked from feedhenry-raincatcher/raincatcher-docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
26 lines (26 loc) · 838 Bytes
/
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
{
"name": "@raincatcher/website",
"version": "1.1.0",
"description": "RainCatcher website source code",
"main": "index.js",
"scripts": {
"build:docs": "node ./website/cli.js asciidocs-build",
"build:api": "node ./website/cli.js apidocs-build",
"build:all": "npm run build:docs && npm run build:api",
"watch": "nodemon -e adoc,xml,png,svg,js,css -w docs/ -w api/ -w resources/ --exec 'npm run build:all && npm run serve'",
"serve": "http-server website/",
"publish": "node ./website/cli.js publish",
"validate": "node ./website/cli.js checkLinks"
},
"dependencies": {
"bs-broken-links-checker": "^0.2.0",
"fs-extra": "^4.0.1",
"gh-pages": "^1.0.0",
"moment": "^2.18.1",
"yargs": "^8.0.2"
},
"devDependencies": {
"http-server": "^0.10.0",
"nodemon": "^1.12.1"
}
}