This repository was archived by the owner on Aug 24, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.27 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.27 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
{
"name": "gkdtool-vue",
"version": "2.1.4",
"private": true,
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"build-only": "vite build",
"type-check": "vue-tsc --noEmit",
"lint": "eslint --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx --fix --ignore-path .gitignore .",
"format": "prettier --cache --write --ignore-unknown ."
},
"dependencies": {
"@dlr-eoc/utils-browser": "12.0.1-next.2",
"@gkd-kit/api": "^0.0.5",
"jquery": "^3.7.1",
"json5": "^2.2.3",
"vue": "^3.4.21",
"web-launch-app": "^2.2.8"
},
"devDependencies": {
"@rushstack/eslint-patch": "^1.10.2",
"@tsconfig/node20": "^20.1.4",
"@types/jquery": "^3.5.29",
"@types/node": "^20.12.7",
"@vitejs/plugin-vue": "^5.0.4",
"@vitejs/plugin-vue-jsx": "^3.1.0",
"@vue/eslint-config-prettier": "^9.0.0",
"@vue/eslint-config-typescript": "^13.0.0",
"@vue/tsconfig": "^0.5.1",
"eslint": "^9.0.0",
"eslint-plugin-vue": "^9.24.1",
"npm-run-all2": "^6.1.2",
"prettier": "^3.2.5",
"typescript": "~5.4.5",
"vite": "^5.2.8",
"vite-plugin-vue-devtools": "^7.0.27",
"vue-tsc": "^2.0.13"
},
"lint-staged": {
"*.{js,ts,jsx,tsx}": [
"eslint --cache --fix"
]
}
}