57b20ddcaf91db48e6ce3cee35f350395a2cd550
[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     "babel-cli": "^6.26.0",
8     "babel-preset-env": "^1.7.0",
9     "babel-preset-es2015-ie": "^6.7.0",
10     "bulma": "^0.9.2",
11     "grunt": "^1.3.0",
12     "grunt-contrib-clean": "^1.1.0",
13     "grunt-contrib-cssmin": "^3.0.0",
14     "grunt-contrib-less": "^2.0.0",
15     "grunt-contrib-watch": "^1.1.0",
16     "grunt-newer": "^1.1.1",
17     "http-server": "^0.12.3",
18     "node-sass": "^4.13.1",
19     "npm-run-all": "^4.1.5",
20     "postcss-cli": "^7.1.0"
21   },
22   "dependencies": {
23     "bulma": "^0.9.2"
24   },
25   "scripts": {
26     "css-deploy": "npm run css-build && npm run css-postcss",
27     "css-build": "node-sass _sass/main.scss css/main.css",
28     "css-postcss": "postcss --use autoprefixer --output css/main.css css/main.css",
29     "css-watch": "npm run css-build -- --watch",
30     "deploy": "npm run css-deploy && npm run js-build",
31     "js-build": "babel _javascript --out-dir lib",
32     "js-watch": "npm run js-build -- --watch",
33     "start": "npm-run-all --parallel css-watch js-watch"
34   }
35 }