-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.11 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 2.11 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
{
"name": "mink-frontend",
"version": "1.16.1",
"license": "MIT",
"scripts": {
"dev": "vite",
"build": "yarn run typecheck && vite build",
"serve": "vite preview",
"validate": "yarn run typecheck && yarn run lint && yarn run format",
"fix": "yarn run lintfix && yarn run formatfix",
"typecheck": "vue-tsc --noEmit",
"lint": "eslint",
"lintfix": "eslint --fix",
"format": "prettier . --list-different",
"formatfix": "prettier . --list-different --write",
"test": "vitest"
},
"engines": {
"node": ">=22"
},
"type": "module",
"dependencies": {
"@codemirror/lang-yaml": "^6.1.2",
"@codemirror/lint": "^6.9.5",
"@fontsource-variable/source-sans-3": "^5.2.9",
"@formkit/vue": "^1.7.2",
"@fsegurai/codemirror-theme-monokai": "^6.2.3",
"@highlightjs/vue-plugin": "^2.1.0",
"@phosphor-icons/vue": "^2.2.1",
"@tailwindcss/postcss": "^4.2.1",
"@vitejs/plugin-vue": "^6.0.5",
"@vue/tsconfig": "^0.9.0",
"@vueuse/core": "^14.2.1",
"ajv": "^8.18.0",
"ajv-formats": "^3.0.1",
"axios": "^1.13.6",
"codemirror": "^6.0.2",
"datatransfer-files-promise": "^2.0.0",
"es-toolkit": "^1.45.1",
"eslint": "^9",
"filesize": "^11.0.13",
"highlight.js": "^11.11.1",
"jwt-decode": "^4.0.0",
"pinia": "^3.0.4",
"rollup-plugin-visualizer": "^7.0.1",
"tailwindcss": "^4.2.1",
"typescript": "^5.9.3",
"vite": "^8.0.0",
"vue": "^3.5.30",
"vue-codemirror": "^6.1.1",
"vue-i18n": "11.3.0",
"vue-router": "5.0.3",
"vue-tsc": "^3.2.5",
"vue3-matomo": "^1.2.3",
"yaml": "^2.8.2"
},
"devDependencies": {
"@testing-library/vue": "^8.0.1",
"@types/node": "^25.5.0",
"@vue/eslint-config-prettier": "^10.2.0",
"@vue/eslint-config-typescript": "^14.7.0",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-vue": "^10.8.0",
"happy-dom": "^20.8.4",
"prettier": "^3.8.1",
"vite-plugin-checker": "^0.12.0",
"vite-plugin-vue-devtools": "^8.1.0",
"vitest": "^4.1.0"
},
"prettier": {
"trailingComma": "all"
}
}