basic styling

This commit is contained in:
Benedikt Rötsch
2017-09-26 17:07:58 +02:00
parent 200a8ae2f1
commit c650dd3f1c
23 changed files with 1380 additions and 188 deletions

View File

@@ -6,7 +6,9 @@
"start:watch": "nodemon ./bin/www --ignore public/",
"start": "node ./bin/www",
"lint": "eslint ./app.js routes",
"format": "eslint --fix . bin --ignore public node_modules"
"format": "eslint --fix . bin --ignore public node_modules",
"styles": "postcss -c ./postcss.config.js ./assets/stylesheets/style.css -d ./public/stylesheets",
"styles:watch": "npm run styles -- -w"
},
"dependencies": {
"body-parser": "~1.15.2",
@@ -16,14 +18,22 @@
"dotenv": "^4.0.0",
"express": "~4.14.0",
"morgan": "~1.7.0",
"normalize.css": "^7.0.0",
"pug": "~2.0.0-beta6",
"serve-favicon": "~2.3.0"
},
"devDependencies": {
"nodemon": "^1.12.1",
"eslint": "^3.16.0",
"eslint-config-standard": "^6.2.1",
"eslint-plugin-promise": "^3.4.2",
"eslint-plugin-standard": "^2.0.1"
"eslint-plugin-standard": "^2.0.1",
"nodemon": "^1.12.1",
"postcss": "^6.0.12",
"postcss-browser-reporter": "^0.5.0",
"postcss-cli": "^4.1.1",
"postcss-cssnext": "^3.0.2",
"postcss-import": "^11.0.0",
"postcss-reporter": "^5.0.0",
"postcss-url": "^7.1.2"
}
}