-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.31 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
47
48
49
{
"name": "blog",
"version": "1.0.0",
"description": "Vasilii Kovalev's blog",
"private": true,
"keywords": [
"blog",
"css",
"eleventy",
"html",
"javascript",
"markdown",
"nunjucks"
],
"author": "Vasilii Kovalev <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/vasilii-kovalev/blog.git"
},
"homepage": "https://github.com/vasilii-kovalev/blog#readme",
"bugs": {
"url": "https://github.com/vasilii-kovalev/blog/issues"
},
"scripts": {
"start": "eleventy --serve --quiet",
"stylelint:check": "stylelint src/**/*.css --color",
"stylelint:fix": "stylelint src/**/*.css --color --fix",
"prettier:check": "prettier --check .",
"prettier:fix": "prettier --write .",
"lint:check": "yarn prettier:check && yarn stylelint:check",
"lint:fix": "yarn prettier:fix && yarn stylelint:fix",
"build": "eleventy --pathprefix blog",
"publish": "yarn build && gh-pages -d dist"
},
"devDependencies": {
"@11ty/eleventy": "^0.12.1",
"clean-css": "^5.2.2",
"gh-pages": "^3.2.3",
"html-minifier": "^4.0.0",
"markdown-it": "^12.2.0",
"markdown-it-anchor": "^8.4.1",
"prettier": "^2.4.1",
"stylelint": "^14.0.0",
"stylelint-config-prettier": "^9.0.3",
"stylelint-config-standard": "^23.0.0",
"stylelint-order": "^5.0.0"
}
}