Added package.json for formatting

Signed-off-by: Alexander Borsuk <me@alex.bio>
This commit is contained in:
Alexander Borsuk 2021-07-01 20:05:38 +02:00 committed by Roman Tsisyk
parent cd80da8114
commit 63a5e08197
3 changed files with 2838 additions and 12 deletions

View file

@ -6,6 +6,8 @@ This website is build with [Zola](https://www.getzola.org/) and Cloudflare Pages
Use `zola serve` for a local preview or `zola build` to generate static site in the `public` folder.
`npm i && npm run format` will pretty-format Markdown and scss.
## Deployment
Every PR deploys a preview version of the site at unique url.

2820
package-lock.json generated

File diff suppressed because it is too large Load diff

28
package.json Normal file
View file

@ -0,0 +1,28 @@
{
"name": "organicmaps.github.io",
"version": "1.0.0",
"description": "Tools and utils",
"main": " ",
"directories": {
"doc": "docs"
},
"devDependencies": {
"prettier": "^2.3.2",
"stylelint": "^13.13.1",
"stylelint-config-recommended": "^5.0.0",
"stylelint-config-standard": "^22.0.0"
},
"scripts": {
"format": "stylelint --fix ./sass/*.scss && prettier --write *.md content/**/*.md"
},
"repository": {
"type": "git",
"url": "git+https://github.com/organicmaps/organicmaps.github.io.git"
},
"author": "Organic Maps OU",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/organicmaps/organicmaps.github.io/issues"
},
"homepage": "https://github.com/organicmaps/organicmaps.github.io#readme"
}