WIP:bulma:neu
[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   "devDependencies": {
6     "autoprefixer": "^9.7.6",
7     "bulma": "^0.9.2",
8     "http-server": "^0.12.3",
9     "node-sass": "^4.13.1",
10     "npm-run-all": "^4.1.5",
11     "postcss-cli": "^7.1.0"
12   },
13   "dependencies": {
14     "@fortawesome/fontawesome-free": "^5.15.2",
15     "bulma": "^0.9.2"
16   },
17   "scripts": {
18     "css-deploy": "npm run css-build && npm run css-postcss",
19     "css-build": "node-sass sass/juplo.scss dist/css/juplo.css",
20     "css-postcss": "postcss --use autoprefixer --output dist/css/juplo.css dist/css/juplo.css",
21     "css-watch": "npm run css-build -- --watch",
22     "copy-assets": "cp -av node_modules/@fortawesome/fontawesome-free/webfonts dist",
23     "deploy": "npm run copy-assets && npm run css-deploy",
24     "server": "http-server dist -p8888 -c0",
25     "devel": "npm run copy-assets && npm run css-build && npm-run-all --parallel server css-watch"
26   }
27 }