forked from BookStackApp/website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
25 lines (25 loc) · 1.05 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
{
"name": "bookstack-site",
"version": "1.0.0",
"description": "The front-end site for bookstack",
"main": "gulpfile.js",
"scripts": {
"build:css:prod": "sass ./themes/bookstack/sass:./themes/bookstack/static/css -s compressed",
"build:css:dev": "sass ./themes/bookstack/sass:./themes/bookstack/static/css",
"build:css:watch": "sass ./themes/bookstack/sass:./themes/bookstack/static/css --watch",
"build:hugo:prod": "hugo",
"build:hugo:watch": "hugo serve -DF",
"build": "npm-run-all --sequential build:css:prod build:hugo:prod",
"serve": "npm-run-all build:hugo:watch",
"dev": "npm-run-all --parallel build:hugo:watch build:css:watch",
"deploy:server": "rsync -avx --delete --exclude '.git/' --exclude 'node_modules/' ./ sandcat:/var/www/bookstackapp.com/",
"deploy": "npm-run-all --sequential build:css:prod build:hugo:prod deploy:server",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Dan Brown",
"license": "MIT",
"devDependencies": {
"npm-run-all": "^4.1.5",
"sass": "^1.52.1"
}
}