-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
41 lines (41 loc) · 1.18 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
{
"name": "developer-portal",
"version": "0.0.0",
"private": true,
"scripts": {
"build:staging": "bash scripts/build.sh --fetch playbook-staging.yml",
"build:master": "bash scripts/build.sh --fetch playbook-master.yml",
"build:local": "bash scripts/build.sh playbook-local-only.yml",
"build:no-fetch": "bash scripts/build.sh playbook.yml",
"build:theme": "yarn --cwd ui build",
"serve": "yarn build:local && live-server build/site",
"watch:local": "fgbg 'nodemon -e yml,adoc,css,scss,js -w components -w ui --ignore ui/theme/dist -x sh scripts/watch-local-build.sh' 'live-server build/site'"
},
"dependencies": {
"@antora/lunr-extension": "^1.0.0-alpha.8",
"antora": "^3.0.0",
"glob": "^7.1.4",
"js-yaml": "^3.13.1",
"multimatch": "^4.0.0",
"semver": "^7.5.2",
"yarn": "^1.19.1"
},
"devDependencies": {
"fgbg": "^0.1.5",
"live-server": "1.2.1",
"nodemon": "^2.0.6",
"which": "^2.0.2"
},
"browserslist": {
"production": [
">0.5%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}