-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
112 lines (112 loc) · 3.39 KB
/
Copy pathpackage.json
File metadata and controls
112 lines (112 loc) · 3.39 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
{
"author": "NBRX AG <info@nbrx.de>",
"description": "veo-web",
"engines": {
"node": "24.16.x",
"npm": "11.16.x"
},
"name": "veo-web",
"private": true,
"version": "1.45.0",
"scripts": {
"cy:develop": "cypress run --env environment=develop",
"cy-gui:develop": "cypress open --env environment=develop",
"cy-gui:local": "cypress open --env environment=local",
"cy:local": "cypress run --env environment=local",
"dev": "nuxi dev",
"dev:public": "nuxi dev --public",
"typecheck": "nuxi typecheck",
"e2e": "cypress run --env environment=local --browser chrome",
"format:all": "prettier . --ignore-unknown --write",
"format": "prettier --ignore-unknown --write",
"format:check": "prettier . --check",
"format:install-hook": "chmod u+x scripts/format-install-pre-commit-hook.sh && ./scripts/format-install-pre-commit-hook.sh",
"generate": "nuxi generate",
"prepare": "nuxi prepare",
"lint": "eslint .",
"precommit": "npm run lint",
"start": "nuxi start",
"test": "vitest"
},
"dependencies": {
"@casl/ability": "^6.3.1",
"@codemirror/lang-json": "^6.0.1",
"@mdi/font": "^7.0.0",
"@mdi/js": "^7.0.96",
"@nuxt/kit": "^4.0.0",
"@nuxtjs/i18n": "^10.0.0",
"@tanstack/vue-query": "^4.37.1",
"@toast-ui/editor": "^3.1.0",
"@toast-ui/editor-plugin-code-syntax-highlight": "^3.0.0",
"@vueuse/core": "^14.0.0",
"ajv": "^8.11.2",
"ajv-formats": "^3.0.0",
"chart.js": "^4.0.1",
"chartjs-plugin-datalabels": "^2.2.0",
"codemirror": "^6.0.1",
"date-fns": "^4.0.0",
"dompurify": "^3.1.5",
"dotenv": "^17.4.2",
"glob": "^13.0.0",
"intro.js": "^8.3.2",
"js-cookie": "^3.0.1",
"jsonpointer": "^5.0.1",
"jszip": "^3.10.1",
"keycloak-js": "^26.0.5",
"lodash": "^4.17.21",
"papaparse": "^5.5.1",
"prismjs": "^1.29.0",
"serve": "^14.2.0",
"uuid": "^14.0.0",
"validator": "^13.15.15",
"vite-plugin-vuetify": "^2.0.1",
"vue-chartjs": "^5.0.1",
"vue-codemirror": "^6.1.1",
"vue-query-v5": "npm:@tanstack/vue-query@^5.81.5",
"vue-router": "^5.0.0",
"vuedraggable": "^4.1.0",
"vuetify": "^3.10.9",
"xlsx": "https://cdn.sheetjs.com/xlsx-0.20.2/xlsx-0.20.2.tgz"
},
"devDependencies": {
"@eslint/js": "10.0.1",
"@nuxt/content": "3.14.0",
"@nuxt/eslint-config": "1.15.2",
"@nuxt/fonts": "0.14.0",
"@nuxt/test-utils": "4.0.3",
"@types/hash-sum": "1.0.2",
"@types/intro.js": "5.1.5",
"@types/js-cookie": "3.0.6",
"@types/lodash": "4.17.24",
"@types/node": "24.13.1",
"@types/prismjs": "1.26.6",
"@typescript-eslint/eslint-plugin": "8.60.1",
"@vitejs/plugin-vue": "6.0.7",
"@vue/test-utils": "2.4.11",
"cypress": "15.16.0",
"cypress-axe": "1.7.0",
"cypress-multi-reporters": "2.0.5",
"cypress-parallel-extended": "2.1.8",
"eslint": "10.4.1",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-vue": "10.9.2",
"force-graph": "1.51.4",
"happy-dom": "20.10.1",
"lint-staged": "17.0.7",
"mocha-junit-reporter": "2.2.1",
"nuxt": "4.4.7",
"prettier": "3.8.3",
"sass": "1.100.0",
"typescript-eslint": "8.60.1",
"vite-tsconfig-paths": "6.1.1",
"vitest": "4.1.8",
"vue-tsc": "3.3.3"
},
"overrides": {
"vitest": "$vitest",
"lodash-es": "4.18.1",
"preact": "10.29.2",
"rollup": "4.61.1",
"dompurify": "$dompurify"
}
}