-
Notifications
You must be signed in to change notification settings - Fork 39
/
package.json
62 lines (62 loc) · 1.76 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": "trivy-vulnerability-explorer",
"repository": "https://github.com/dbsystel/trivy-vulnerability-explorer",
"license": "Apache-2.0",
"version": "0.0.0-development",
"private": false,
"scripts": {
"dev": "vite",
"build": "run-p type-check \"build-only {@}\" --",
"preview": "vite preview",
"build-only": "vite build",
"type-check": "vue-tsc --build --force",
"lint": "eslint . --fix",
"prettier": "prettier --write .",
"prepare": "husky",
"semantic-release": "semantic-release",
"test": "npx playwright test",
"test:ui": "npm run test -- --ui"
},
"engines": {
"node": ">= 22 < 23"
},
"dependencies": {
"@mdi/font": "7.4.47",
"@vueuse/core": "12.2.0",
"core-js": "3.39.0",
"roboto-fontface": "0.10.0",
"v-clipboard": "^3.0.0-next.0",
"vue": "3.5.13",
"vuetify": "3.7.6"
},
"devDependencies": {
"@eslint/js": "9.17.0",
"@playwright/test": "^1.49.1",
"@semantic-release/github": "11.0.1",
"@tsconfig/node22": "22.0.0",
"@types/node": "22.10.2",
"@vitejs/plugin-vue": "5.2.1",
"@vue/eslint-config-typescript": "14.2.0",
"@vue/tsconfig": "0.7.0",
"eslint": "9.17.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-vue": "9.32.0",
"husky": "9.1.7",
"npm-run-all2": "7.0.2",
"prettier": "3.4.2",
"pretty-quick": "4.0.0",
"sass": "1.83.0",
"sass-embedded": "1.83.0",
"semantic-release": "24.2.0",
"typescript": "5.7.2",
"unplugin-auto-import": "0.19.0",
"unplugin-fonts": "1.3.1",
"unplugin-vue-components": "0.28.0",
"unplugin-vue-router": "0.10.9",
"vite": "5.4.11",
"vite-plugin-vue-layouts": "0.11.0",
"vite-plugin-vuetify": "2.0.4",
"vue-router": "4.5.0",
"vue-tsc": "2.2.0"
}
}