-
Notifications
You must be signed in to change notification settings - Fork 43
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.7 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.7 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
59
60
61
{
"name": "trivy-vulnerability-explorer",
"repository": "https://github.com/dbsystel/trivy-vulnerability-explorer",
"license": "Apache-2.0",
"version": "0.0.0-development",
"private": false,
"type": "module",
"engines": {
"node": ">= 22 < 25"
},
"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"
},
"dependencies": {
"@mdi/font": "7.4.47",
"@vueuse/core": "14.2.1",
"core-js": "3.49.0",
"roboto-fontface": "0.10.0",
"v-clipboard": "^3.0.0-next.0",
"vue": "3.5.32",
"vue-router": "5.0.4",
"vuetify": "4.0.5"
},
"devDependencies": {
"@eslint/js": "10.0.1",
"@playwright/test": "1.59.1",
"@semantic-release/github": "12.0.6",
"@tsconfig/node24": "24.0.4",
"@types/node": "24.12.2",
"@vitejs/plugin-vue": "6.0.5",
"@vue/eslint-config-typescript": "14.7.0",
"@vue/tsconfig": "0.9.1",
"eslint": "10.2.0",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-vue": "10.8.0",
"husky": "9.1.7",
"npm-run-all2": "8.0.4",
"prettier": "3.8.1",
"pretty-quick": "4.2.2",
"sass": "1.99.0",
"sass-embedded": "1.99.0",
"semantic-release": "25.0.3",
"typescript": "5.9.3",
"unplugin-auto-import": "21.0.0",
"unplugin-fonts": "1.4.0",
"unplugin-vue-components": "32.0.0",
"vite": "7.3.2",
"vite-plugin-vuetify": "2.1.3",
"vue-tsc": "3.2.6"
}
}