-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
119 lines (119 loc) · 4.29 KB
/
Copy pathpackage.json
File metadata and controls
119 lines (119 loc) · 4.29 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
{
"name": "osim",
"version": "0.0.1",
"repository": {
"type": "git",
"url": "https://github.com/RedHatProductSecurity/osim.git"
},
"license": "MIT",
"private": false,
"type": "module",
"scripts": {
"dev": "scripts/dev-osim.sh",
"dev-server": "vite",
"build": "vite build",
"preview": "vite preview",
"coverage": "vitest run --coverage",
"test:unit": "vitest",
"test:unit:nowatch": "vitest run",
"test:e2e": "behave features",
"type-check": "vue-tsc --noEmit -p tsconfig.vitest.json --composite false",
"vibe-check": "npx vite-bundle-visualizer",
"generate-openapi-client": "openapi-generator-cli generate",
"generate-osidb-mock": "msw-auto-mock ./openapi-osidb.yml -o src/mock-server --regex -t flaws,trackers,auth,labels --base-url http://localhost:3000",
"generate-mock-worker": "msw init",
"lint": "yarn lint-style && yarn lint-ts-vue",
"lint-ts-vue": "eslint .",
"lint-fix": "eslint --fix .",
"lint-style": "stylelint '**/*.{vue,css,scss}'",
"lint-changed": "yarn lint-style-changed && yarn lint-ts-vue-changed",
"lint-ts-vue-changed": "bash -c 'FILES=$(scripts/get-changed-files.sh \"vue|ts|tsx\"); [ -n \"$FILES\" ] && eslint $FILES || echo \"No changed files to lint\"'",
"lint-style-changed": "bash -c 'FILES=$(scripts/get-changed-files.sh \"vue|s?css\"); [ -n \"$FILES\" ] && stylelint $FILES || echo \"No changed files to lint\"'",
"type-check-changed": "bash -c 'FILES=$(scripts/get-changed-files.sh \"vue|ts|tsx\"); [ -n \"$FILES\" ] && vue-tsc --noEmit -p tsconfig.vitest.json --composite false $FILES || echo \"No changed files to type-check\"'",
"fetch-cvss4-test-data": "scripts/fetch_cvss4_test_data.sh"
},
"dependencies": {
"@mrmarble/djangoql-completion": "^0.8.3",
"@popperjs/core": "^2.11.8",
"@tanstack/vue-table": "^8.21.3",
"@vueuse/core": "^12.3.0",
"bootstrap": "^5.3.2",
"bootstrap-icons": "^1.11.3",
"driver.js": "^1.3.6",
"jwt-decode": "^3.1.2",
"luxon": "^3.4.3",
"marked": "^12.0.1",
"moment": "^2.29.4",
"packageurl-js": "^2.0.1",
"pinia": "^2.1.4",
"ramda": "^0.29.1",
"sanitize-html": "^2.17.5",
"vue": "^3.5.13",
"vue-data-ui": "^3.8.0",
"vue-imask": "^7.1.2",
"vue-router": "^4.2.4",
"zod": "^3.21.4"
},
"devDependencies": {
"@eslint/js": "^9.9.1",
"@faker-js/faker": "^10.5.0",
"@fullhuman/postcss-purgecss": "^6.0.0",
"@mrmarble/msw-auto-mock": "^0.28.1",
"@openapitools/openapi-generator-cli": "^2.15.3",
"@pinia/testing": "^0.1.3",
"@stylistic/eslint-plugin": "^2.7.1",
"@tsconfig/node18": "^18.2.2",
"@types/eslint__js": "^8.42.3",
"@types/jsdom": "^21.1.3",
"@types/luxon": "^3.3.2",
"@types/node": "^20.4.0",
"@types/ramda": "^0.29.11",
"@types/sanitize-html": "^2.11.0",
"@typescript-eslint/eslint-plugin": "^7.0.1",
"@typescript-eslint/parser": "^7.0.1",
"@vitejs/plugin-basic-ssl": "^1.0.1",
"@vitejs/plugin-vue": "^4.3.4",
"@vitejs/plugin-vue-jsx": "^5.1.1",
"@vitest/coverage-istanbul": "3.2.6",
"@vitest/ui": "3.2.6",
"@vue/test-utils": "^2.4.1",
"@vue/tsconfig": "^0.4.0",
"eslint": "^9.9.1",
"eslint-import-resolver-typescript": "^3.6.3",
"eslint-merge-processors": "^0.1.0",
"eslint-plugin-format": "^0.1.2",
"eslint-plugin-import-x": "^4.1.1",
"eslint-plugin-no-only-tests": "^3.3.0",
"eslint-plugin-perfectionist": "^3.3.0",
"eslint-plugin-unicorn": "^55.0.0",
"eslint-plugin-unused-imports": "^4.1.3",
"eslint-plugin-vitest": "^0.5.4",
"eslint-plugin-vue": "^9.27.0",
"eslint-processor-vue-blocks": "^0.1.2",
"jsdom": "^22.1.0",
"msw": "^2.1.2",
"npm-run-all2": "^6.0.6",
"nyc": "^17.0.0",
"postcss-html": "^1.6.0",
"prettier": "^3.3.3",
"sass": "^1.63.6",
"sass-loader": "^13.3.2",
"stylelint": "^16.2.1",
"stylelint-config-recommended-vue": "^1.5.0",
"stylelint-config-standard": "^36.0.0",
"stylelint-config-standard-scss": "^13.0.0",
"stylelint-scss": "^6.1.0",
"typescript": "~5.2.0",
"typescript-eslint": "^8.3.0",
"vite": "^6.4.3",
"vite-bundle-visualizer": "^1.0.0",
"vitest": "3.2.6",
"vue-eslint-parser": "^9.4.3",
"vue-tsc": "^1.8.11"
},
"msw": {
"workerDirectory": [
"public"
]
}
}