-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
57 lines (57 loc) · 1.23 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
{
"name": "rdt-editor",
"version": "5.0",
"private": true,
"type": "module",
"scripts": {
"dev": "vite --host 0.0.0.0 --port 8080",
"build": "vite build",
"lint": "eslint --ext .ts,.vue src"
},
"dependencies": {
"@vueuse/core": "^10.9.0",
"ace-code": "^1.32.8",
"md5": "^2.3.0",
"pinia": "^2.1.7",
"qs": "^6.12.0",
"radash": "^12.1.0",
"vue": "^3.4.21"
},
"devDependencies": {
"@types/md5": "^2.3.2",
"@types/qs": "^6.9.14",
"@typescript-eslint/eslint-plugin": "^7.3.1",
"@vitejs/plugin-vue": "^5.0.4",
"@vue/eslint-config-typescript": "^13.0.0",
"@vue/tsconfig": "^0.5.1",
"eslint": "^8.57.0",
"eslint-plugin-vue": "^9.23.0",
"sass": "^1.72.0",
"typescript": "^5.4.3",
"vite": "^5.2.3",
"vite-plugin-vue-devtools": "^7.0.25"
},
"eslintConfig": {
"root": true,
"env": {
"browser": true
},
"extends": [
"eslint:recommended",
"plugin:vue/vue3-essential",
"@vue/typescript/recommended"
],
"parserOptions": {
"ecmaVersion": 2020
},
"rules": {
"vue/multi-word-component-names": "warn"
}
},
"browserslist": [
"> 1%",
"last 2 versions",
"not dead",
"not ie 11"
]
}