-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
46 lines (46 loc) · 2.27 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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
{
"name": "on-merrit",
"version": "0.0.1",
"description": "Lorem ipsum dolor sit amut.",
"contributors": [
"Nils Windisch"
],
"homepage": "https://on-merrit.eu",
"author": "Nils Windisch <[email protected]>",
"devDependencies": {
"autoprefixer": "^9.8.0",
"concurrently": "^5.2.0",
"cssnano": "^4.1.10",
"foundation-sites": "^6.6",
"live-server": "^1.2",
"node-sass": "^4.14.1",
"nodemon": "^2.0.4",
"ntl": "^5.0.0",
"postcss": "^7.0.30",
"postcss-cli": "^7",
"pretty-exceptions": "^1.4.0",
"stylelint": "^13.5.0",
"stylelint-config-standard": "^20.0.0",
"stylelint-order": "^4.0.0"
},
"scripts": {
"sass": "node-sass --output-style compressed --source-map-embed $(pwd)/_scss/style.scss > $(pwd)/css/style.css",
"prefix": "postcss --use autoprefixer -b 'last 2 versions' < $(pwd)/css/style.css | postcss --use cssnano > $(pwd)/css/style.min.css",
"sass_build": "node-sass --output-style compressed $(pwd)/_scss/style.scss > $(pwd)/css/style.css",
"sass_raw": "node-sass --output-style expanded --source-map-embed $(pwd)/_scss/style.scss > $(pwd)/css/style.css",
"prefix_raw": "postcss --use autoprefixer -b 'last 2 versions' < $(pwd)/css/style.min.css",
"prefix_build": "postcss --no-map --use autoprefixer -b 'last 2 versions' < $(pwd)/css/style.css | postcss --no-map --use cssnano > $(pwd)/css/style.min.css",
"watch:css": "nodemon -e scss -x \"npm run build:css\"",
"build:css": "npm run sass && npm run prefix",
"watch:jekyll": "bundle exec jekyll b -w",
"build:jekyll": "bundle exec jekyll b --config _local.yml",
"jekyll_build": "bundle exec jekyll b",
"serve": "live-server on-merrit-website --watch=$(PWD)/on-merrit-website --port=8010 --no-browser",
"run:css": "nodemon -e scss -x \"npm run build:css && npm run build:jekyll\"",
"run:jekyll": "nodemon -e md,html,markdown,js,svg --delay 2 --ignore on-merrit-website -x \"npm run build:jekyll\"",
"dev": "concurrently --kill-others --prefix \"[{name}]\" --names \"SERVE,SASS,JEKYLL\" \"npm run serve\" \"npm run run:css\" \"npm run run:jekyll\"",
"go": "npm run dev > npm.log",
"prod": "npm run sass_build && npm run prefix_build && npm run jekyll_build",
"cleanup": "trash on-merrit-website"
}
}