-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.21 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
{
"name": "zapptechbook",
"version": "1.0.0",
"description": "zapp gitbook",
"main": "index.js",
"engines": {
"node": "8.11.2",
"npm": "5.6.0"
},
"dependencies": {
"express": "^4.16.4",
"gitbook": "^2.6.9",
"gitbook-plugin-collapsible-menu": "^1.0.3",
"gitbook-plugin-highlight": "^2.0.3",
"gitbook-plugin-styles-sass": "^1.1.0",
"gitbook-plugin-styles-sass-fix": "^1.1.2",
"gitbook-plugin-theme-gestalt": "^1.0.7",
"gitbook-plugin-toggle-chapters": "^0.0.3"
},
"devDependencies": {
"gitbook-cli": "^2.3.2"
},
"scripts": {
"build": "node ./node_modules/gitbook-cli/bin/gitbook.js build",
"heroku-postbuild": "echo 'Building again to include SUMMARY.md' && npm run build",
"serve:debug": "PORT=${PORT:-4000} ; node ./node_modules/gitbook-cli/bin/gitbook.js --port $PORT serve",
"serve:production": "node app.js",
"start": "npm run serve:debug"
},
"repository": {
"type": "git",
"url": "git+https://github.com/applicaster/ZappTechBook.git"
},
"author": "l.romasca",
"license": "MIT",
"bugs": {
"url": "https://github.com/applicaster/ZappTechBook/issues"
},
"homepage": "https://github.com/applicaster/ZappTechBook#readme"
}