-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
35 lines (35 loc) · 1017 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": "nginx-proxy-docs",
"version": "1.0.0",
"description": "Combination of Open Source tools that enable you to easily deploy any application that runs with Docker on your own linux server.",
"author": "larsrickert",
"license": "MIT",
"packageManager": "pnpm@9.0.6",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/larsrickert/nginx-proxy"
},
"homepage": "https://nginxproxy.lars-rickert.de",
"scripts": {
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:serve": "vitepress serve docs",
"format": "prettier . --write",
"format:check": "prettier . --check",
"preinstall": "npx only-allow pnpm",
"prepare": "simple-git-hooks"
},
"devDependencies": {
"lint-staged": "^15.2.2",
"prettier": "^3.2.5",
"simple-git-hooks": "^2.11.1",
"vitepress": "^1.1.4"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*": "prettier --write -u"
}
}