-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
42 lines (42 loc) · 1.16 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
{
"name": "jhipster-book",
"version": "7.0.2",
"description": "The JHipster Mini-Book",
"author": "Matt Raible (@mraible)",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "[email protected]:mraible/jhipster-book.git"
},
"keywords": [
"jhipster",
"angular",
"spring-boot",
"mini-book",
"infoq",
"asciidoctor"
],
"scripts": {
"build": "bash ./gradlew all",
"build:site": "antora --html-url-extension-style=indexify site.yml",
"clean": "bash ./gradlew clean",
"serve": "npm run watch:all",
"setup": "npm install && npm run build",
"start": "npm run setup && npm run watch",
"watch": "npm run watch:all",
"watch:adoc": "bash ./gradlew --continuous html",
"watch:html": "nodemon ./watch.js",
"watch:site": "node watch-site.js",
"watch:all": "concurrently --kill-others \"npm run watch:adoc\" \"npm run watch:html\"",
"release": "release-it"
},
"devDependencies": {
"@antora/cli": "~3.1",
"@antora/site-generator": "^3.1.10",
"@release-it/bumper": "7.0.1",
"browser-sync": "3.0.3",
"chokidar": "4.0.3",
"concurrently": "9.1.2",
"nodemon": "3.1.9"
}
}