forked from hestiacp/hestiacp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.64 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.64 KB
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
50
51
52
53
54
55
56
57
58
{
"name": "hestia",
"private": true,
"version": "1.10.0~alpha",
"description": "An open-source Linux web server control panel.",
"repository": "https://github.com/hestiacp/hestiacp",
"license": "GPL-3.0-or-later",
"type": "module",
"packageManager": "npm@11.8.0",
"scripts": {
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:serve": "vitepress serve docs",
"docs:test": "vitest run --config docs/.vitepress/vitest.config.js",
"build": "node build.js",
"lint": "prettier --cache --check . && biome lint . && markdownlint-cli2 *.md docs/**/*.md",
"lint-staged": "lint-staged",
"format": "prettier --cache --write .",
"preinstall": "npx only-allow npm",
"prepare": "husky"
},
"dependencies": {
"@alpinejs/collapse": "^3.15.5",
"@fortawesome/fontawesome-free": "^7.1.0",
"alpinejs": "^3.15.5",
"chart.js": "^4.5.1",
"check-password-strength": "^3.0.0",
"floating-vue": "^5.2.2",
"nanoid": "^5.1.6",
"normalize.css": "^8.0.1",
"xterm": "^5.3.0",
"xterm-addon-canvas": "^0.5.0",
"xterm-addon-webgl": "^0.16.0"
},
"devDependencies": {
"@biomejs/biome": "2.3.13",
"@prettier/plugin-php": "^0.24.0",
"@testing-library/vue": "^8.1.0",
"@vitejs/plugin-vue": "^6.0.3",
"browserslist": "^4.28.1",
"esbuild": "^0.27.2",
"husky": "^9.1.7",
"jsdom": "^27.4.0",
"lightningcss": "^1.31.1",
"lint-staged": "^16.2.7",
"markdownlint-cli2": "^0.20.0",
"prettier": "^3.8.1",
"prettier-plugin-nginx": "^1.0.3",
"prettier-plugin-sh": "^0.18.0",
"prettier-plugin-sql": "^0.19.2",
"vitepress": "^1.6.4",
"vitest": "^4.0.18",
"vue": "^3.5.27"
},
"browserslist": [
"defaults"
]
}