Kanonische Links über _canonical realisiert
[website] / package.json
1 {
2   "name": "juplo.de",
3   "description": "Thymeleaf-Layout and static content for http://juplo.de",
4   "version": "0.0.1",
5   "main": "sass/juplo.scss",
6   "devDependencies": {
7     "autoprefixer": "^9.7.6",
8     "bulma": "^0.9.2",
9     "http-server": "^0.12.3",
10     "node-sass": "^4.13.1",
11     "npm-run-all": "^4.1.5",
12     "postcss-cli": "^7.1.0"
13   },
14   "dependencies": {
15     "@fortawesome/fontawesome-free": "^5.15.2",
16     "bulma": "^0.9.2"
17   },
18   "scripts": {
19     "css-deploy": "npm run css-build && npm run css-postcss",
20     "css-build": "node-sass sass/juplo.scss dist/css/juplo.css",
21     "css-postcss": "postcss --use autoprefixer --output dist/css/juplo.css dist/css/juplo.css",
22     "css-watch": "npm run css-build -- --watch",
23     "copy-assets": "cp -av node_modules/@fortawesome/fontawesome-free/webfonts dist",
24     "deploy": "npm run copy-assets && npm run css-deploy",
25     "server": "http-server dist -p8888 -c0",
26     "devel": "npm run copy-assets && npm run css-build && npm-run-all --parallel server css-watch"
27   }
28 }