-
Notifications
You must be signed in to change notification settings - Fork 110
/
Copy pathpackage.json
35 lines (35 loc) · 894 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
29
30
31
32
33
34
35
{
"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": "prettier --write **.css",
"lint": "tsc --noEmit && eslint src/scripts/**.ts && stylelint **/*.css",
"serve": "eleventy --serve"
},
"type": "module",
"devDependencies": {
"@11ty/eleventy": "3",
"@stylistic/eslint-plugin": "*",
"eslint": "*",
"eslint-plugin-html": "*",
"html-validate": "*",
"js-beautify": "*",
"markdown-it-anchor": "*",
"prettier": "*",
"stylelint": "*",
"stylelint-config-standard": "*",
"stylelint-order": "*",
"swc": "*",
"typescript": "*",
"typescript-eslint": "*"
},
"workspaces": [
"atom_generator"
]
}