forked from qbittorrent/qBittorrent-website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
28 lines (28 loc) · 778 Bytes
/
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
{
"name": "qBittorrent-website",
"description": "qBittorrent website",
"repository": {
"type": "git",
"url": "https://github.com/qbittorrent/qBittorrent-website.git"
},
"scripts": {
"build": "eleventy",
"check-html": "html-validate _site/*.html",
"format": "js-beautify -r src/**.js && prettier --write **.css",
"lint": "eslint src/scripts/**.js && stylelint **/*.css",
"serve": "eleventy --serve"
},
"devDependencies": {
"@11ty/eleventy": "^2.0.0",
"@stylistic/eslint-plugin": "*",
"eslint": "*",
"eslint-plugin-html": "*",
"html-validate": "*",
"js-beautify": "*",
"markdown-it-anchor": "*",
"prettier": "*",
"stylelint": "*",
"stylelint-config-standard": "*",
"stylelint-order": "*"
}
}