]> BookStack Code Mirror - website/blob - package.json
Updated meilisearch setup
[website] / package.json
1 {
2   "name": "bookstack-site",
3   "version": "1.0.0",
4   "description": "The front-end site for bookstack",
5   "main": "gulpfile.js",
6   "scripts": {
7     "build:css:prod": "sass ./themes/bookstack/sass:./themes/bookstack/static/css -s compressed",
8     "build:css:dev": "sass ./themes/bookstack/sass:./themes/bookstack/static/css",
9     "build:css:watch": "sass ./themes/bookstack/sass:./themes/bookstack/static/css --watch",
10     "build:hugo:prod": "hugo",
11     "build:hugo:watch": "hugo serve -DF",
12     "build": "npm-run-all --sequential build:css:prod build:hugo:prod",
13     "serve": "npm-run-all build:hugo:watch",
14     "dev": "npm-run-all --parallel build:hugo:watch build:css:watch",
15     "deploy:server": "rsync -avx --delete --exclude '.git/' --exclude 'node_modules/' ./ bs-site:/var/www/bookstackapp.com/",
16     "deploy": "npm-run-all --sequential build:css:prod build:hugo:prod deploy:server",
17     "test": "echo \"Error: no test specified\" && exit 1"
18   },
19   "author": "Dan Brown",
20   "license": "MIT",
21   "devDependencies": {
22     "npm-run-all": "^4.1.5",
23     "sass": "^1.63.6"
24   }
25 }