-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
49 lines (49 loc) · 942 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
43
44
45
46
47
48
49
{
"name": "vuensee",
"version": "0.9.12",
"scripts": {
"dev": "vite",
"build": "vite build",
"lint": "eslint '*.js' 'src/**/*.js' 'src/**/*.vue'"
},
"dependencies": {
"@novnc/novnc": "^1.2.0",
"vue": "^3.1.5",
"vue-i18n": "^9.1.7"
},
"devDependencies": {
"@vitejs/plugin-vue": "^1.3.0",
"@vue/compiler-sfc": "^3.1.5",
"sass": "^1.37.0",
"vite": "^2.4.4"
},
"optionalDependencies": {
"eslint": "^7.15.0",
"eslint-plugin-vue": "^7.2.0"
},
"eslintConfig": {
"extends": [
"eslint:recommended",
"plugin:vue/vue3-recommended"
],
"globals": {
"process": true
},
"rules": {
"no-unused-vars": 1,
"vue/component-tags-order": [
"error",
{
"order": [
"template",
"style",
"script"
]
}
]
},
"ignorePatterns": [
"*.test.js"
]
}
}