forked from hestiacp/hestiacp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.82 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
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "hestia",
"private": true,
"version": "1.9.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",
"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 . && eslint --cache . && stylelint web/css/src/**/*.css && markdownlint-cli2 *.md docs/**/*.md",
"lint-staged": "lint-staged",
"format": "prettier --cache --write .",
"preinstall": "npx only-allow npm",
"prepare": "husky"
},
"dependencies": {
"@alpinejs/collapse": "^3.14.1",
"@fortawesome/fontawesome-free": "^6.6.0",
"alpinejs": "^3.14.1",
"chart.js": "^4.4.3",
"check-password-strength": "^2.0.10",
"floating-vue": "^5.2.2",
"nanoid": "^5.0.7",
"normalize.css": "^8.0.1",
"xterm": "^5.3.0",
"xterm-addon-canvas": "^0.5.0",
"xterm-addon-webgl": "^0.16.0"
},
"devDependencies": {
"@prettier/plugin-php": "^0.22.2",
"@testing-library/vue": "^8.1.0",
"@vitejs/plugin-vue": "^5.1.2",
"browserslist": "^4.23.3",
"esbuild": "^0.23.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-editorconfig": "^4.0.3",
"eslint-plugin-import": "^2.29.1",
"husky": "^9.1.4",
"jsdom": "^24.1.1",
"lightningcss": "^1.25.1",
"lint-staged": "^15.2.8",
"markdownlint-cli2": "^0.13.0",
"prettier": "^3.3.3",
"prettier-plugin-nginx": "^1.0.3",
"prettier-plugin-sh": "^0.14.0",
"prettier-plugin-sql": "^0.18.1",
"stylelint": "^16.8.1",
"stylelint-config-standard": "^36.0.1",
"vitepress": "^1.3.1",
"vitest": "^2.0.5",
"vue": "^3.4.35"
},
"browserslist": [
"defaults"
]
}