-
Notifications
You must be signed in to change notification settings - Fork 64
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.74 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.74 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
{
"name": "cve-website",
"description": "Common Vulnerabilities and Exposures (CVE) Website",
"version": "0.1.0",
"author": "Automation Working Group",
"private": true,
"type": "module",
"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 . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore",
"format": "prettier --write src/"
},
"dependencies": {
"@cityssm/bulma-sticky-table": "^3.0.1",
"@fortawesome/fontawesome-svg-core": "^7.2.0",
"@fortawesome/free-brands-svg-icons": "^7.2.0",
"@fortawesome/free-regular-svg-icons": "^7.2.0",
"@fortawesome/free-solid-svg-icons": "^7.2.0",
"@fortawesome/vue-fontawesome": "^3.1.2",
"@unhead/vue": "^2.1.2",
"axios": "^1.13.2",
"buefy": "^3.0.3",
"bulma": "^1.0.4",
"bulma-timeline": "^3.0.5",
"leaflet": "^1.9.4",
"lodash": "^4.17.21",
"pinia": "^3.0.4",
"vue": "^3.3.11",
"vue-gtag": "^2.1.2",
"vue-plugin-load-script": "^2.1.1",
"vue-router": "^5.0.3"
},
"devDependencies": {
"@rushstack/eslint-patch": "^1.15.0",
"@tsconfig/node18": "^18.2.6",
"@types/lodash": "^4.17.20",
"@types/node": "^20.19.33",
"@vitejs/plugin-vue": "^6.0.4",
"@vitejs/plugin-vue-jsx": "^5.1.4",
"@vue/eslint-config-prettier": "^10.2.0",
"@vue/eslint-config-typescript": "^14.6.0",
"@vue/tsconfig": "^0.8.1",
"eslint": "^9.39.1",
"eslint-plugin-vue": "^10.5.1",
"npm-run-all2": "^6.2.6",
"prettier": "^3.6.2",
"sass-embedded": "^1.93.3",
"typescript": "^5.9",
"vite": "^7.3.1",
"vue-tsc": "^3.2"
}
}