-
Notifications
You must be signed in to change notification settings - Fork 591
/
Copy pathpackage.json
117 lines (117 loc) · 3.77 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
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
{
"name": "web",
"version": "0.0.0",
"license": "AGPL v3",
"scripts": {
"dev": "vite",
"build": "vue-tsc --noEmit && vite build --base=/opennms/ui/",
"build:dev": "vue-tsc --noEmit && vite build --base=/opennms/ui/ --minify false",
"watch": "vue-tsc --noEmit && vite build --base=/opennms/ui/ --watch",
"watch:dev": "vue-tsc --noEmit && vite build --base=/opennms/ui/ --minify false --watch",
"serve": "vite preview",
"test": "vitest run",
"lint": "eslint --ignore-path ../.gitignore --ext .ts,.vue .",
"lint:fix": "eslint --ignore-path ../.gitignore --ext .ts,.vue . --fix",
"format": "prettier --ignore-path ../.gitignore --write \"**/*.+(ts)\""
},
"dependencies": {
"@featherds/app-bar": "0.12.30",
"@featherds/app-layout": "0.12.30",
"@featherds/autocomplete": "0.12.30",
"@featherds/button": "0.12.30",
"@featherds/checkbox": "0.12.30",
"@featherds/chips": "0.12.30",
"@featherds/date-input": "0.12.30",
"@featherds/dialog": "0.12.30",
"@featherds/drawer": "0.12.30",
"@featherds/dropdown": "0.12.30",
"@featherds/expansion": "0.12.30",
"@featherds/icon": "0.12.30",
"@featherds/input": "0.12.30",
"@featherds/list": "0.12.30",
"@featherds/megamenu": "0.12.30",
"@featherds/menu": "0.12.30",
"@featherds/navigation-rail": "0.12.30",
"@featherds/pagination": "0.12.30",
"@featherds/progress": "0.12.30",
"@featherds/protected-input": "0.12.30",
"@featherds/radio": "0.12.30",
"@featherds/select": "0.12.30",
"@featherds/snackbar": "0.12.30",
"@featherds/styles": "0.12.30",
"@featherds/table": "0.12.30",
"@featherds/tabs": "0.12.30",
"@featherds/textarea": "0.12.30",
"@featherds/tooltip": "0.12.30",
"@featherds/utils": "0.12.30",
"@fortawesome/fontawesome-svg-core": "^6.4.2",
"@fortawesome/free-regular-svg-icons": "^6.5.1",
"@fortawesome/free-solid-svg-icons": "^6.4.2",
"@fortawesome/vue-fontawesome": "^3.0.6",
"@vueuse/core": "^9.13.0",
"ace-builds": "^1.32.6",
"axios": "^0.28.0",
"chart.js": "^3.9.1",
"chartjs-plugin-zoom": "^2.0.1",
"cronstrue": "^2.11.0",
"d3": "^7.8.5",
"date-fns": "^2.30.0",
"date-fns-tz": "^2.0.1",
"ip-regex": "^5.0.0",
"is-ip": "^5.0.1",
"is-valid-domain": "^0.1.6",
"leaflet": "^1.8.0",
"leaflet.markercluster": "^1.5.3",
"lodash": "^4.17.21",
"marked": "^12.0.2",
"pinia": "^2.1.6",
"rapidoc": "^9.3.4",
"sass": "^1.75.0",
"sass-loader": "^14.1.1",
"splitpanes": "^3.1.5",
"vite-svg-loader": "^4.0.0",
"vue": "^3.3.4",
"vue-diff": "^1.2.4",
"vue-router": "^4.2.4",
"vue3-ace-editor": "^2.2.4"
},
"devDependencies": {
"@pinia/testing": "^0.1.3",
"@types/d3": "^7.4.0",
"@types/diff": "^5.0.3",
"@types/leaflet": "^1.9.11",
"@types/leaflet.markercluster": "^1.5.1",
"@types/lodash": "^4.14.196",
"@types/marked": "^4.0.3",
"@types/node": ">=20",
"@types/splitpanes": "^2.2.1",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"@vitejs/plugin-vue": "^4.0.0",
"@vue-leaflet/vue-leaflet": "^0.7.0",
"@vue/test-utils": "^2.4.5",
"diff": "^5.1.0",
"eslint": "^8.46.0",
"eslint-config-prettier": "^8.10.0",
"eslint-plugin-vue": "^9.22.0",
"happy-dom": "^9.20.3",
"prettier": "^3.2.5",
"typescript": "^5.4.5",
"unplugin-auto-import": "^0.17.5",
"unplugin-vue-components": "^0.26.0",
"vite": "^4.3.9",
"vitest": "^2.1.5",
"vitest-mock-extended": "^1.3.1",
"vue-eslint-parser": "^9.3.1",
"vue-tsc": "^1.6.5"
},
"engines": {
"node": ">=18",
"yarn": ">=1.22.18"
},
"resolutions": {
"@antfu/utils": "^0.7.3",
"undici": "5.28.4",
"micromatch": "^4.0.8"
}
}