-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 913 Bytes
/
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
{
"name": "jskos-web",
"version": "0.0.0",
"type": "module",
"engines": {
"node": ">=18.12"
},
"scripts": {
"dev": "vite --port 3453",
"build": "vite build",
"serve": "vite preview",
"lint": "eslint",
"fix": "eslint --fix",
"lint-staged": "lint-staged",
"prepare": "husky || true"
},
"lint-staged": {
"**/*.{js,vue}": [
"eslint --fix"
]
},
"dependencies": {
"axios": "^1.7.9",
"cocoda-sdk": "^3.4.13",
"gbv-login-client-vue": "^1.0.0",
"jskos-tools": "^1.0.43",
"jskos-vue": "^0.3.18",
"json-format-highlight": "^1.0.4",
"vue": "^3.5.13",
"vue-i18n": "^10.0.5",
"vue-router": "^4.5.0"
},
"devDependencies": {
"@vitejs/plugin-vue": "^5.2.1",
"dotenv": "^16.4.7",
"eslint": "~9.16",
"eslint-config-gbv": "~2.6",
"husky": "^9.1.7",
"lint-staged": "^15.2.11",
"vite": "^6.0.3"
}
}