-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 1.91 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "dev-template",
"version": "1.0.0",
"description": "Dev Template",
"main": "src/main.js",
"author": "OVINC-CN <[email protected]>",
"license": "MIT",
"scripts": {
"dev": "vite",
"build": "vite build",
"serve": "vite preview"
},
"eslintConfig": {
"root": true,
"parser": "vue-eslint-parser",
"parserOptions": {
"ecmaVersion": 2022,
"sourceType": "module"
},
"env": {
"browser": true,
"es6": true
},
"globals": {
"defineProps": "readonly",
"defineEmits": "readonly"
},
"extends": [
"plugin:vue/vue3-strongly-recommended",
"eslint-config-google"
],
"rules": {
"vue/multi-word-component-names": "off",
"max-len": "off"
},
"ignorePatterns": [
"dist/",
"public/",
"node_modules/"
]
},
"dependencies": {
"@kangc/v-md-editor": "^2.3.17",
"aegis-web-sdk": "^1.37.9",
"axios": "^1.5.0",
"markdown-it-emoji": "^2.0.2",
"markdown-it-mark": "^3.0.1",
"markdown-it-sub": "^1.0.0",
"markdown-it-sup": "^1.0.0",
"mermaid": "10.9.1",
"moment": "^2.29.4",
"prismjs": "^1.29.0",
"vue": "^3.3.4",
"vue-axios": "^3.5.2",
"vue-i18n": "^9.3.0",
"vue-router": "^4.2.4",
"vuex": "^4.1.0"
},
"devDependencies": {
"@arco-design/web-vue": "^2.51.0",
"@microsoft/eslint-formatter-sarif": "3.0.0",
"@vitejs/plugin-vue": "^4.3.4",
"eslint": "8.48.0",
"eslint-config-google": "^0.14.0",
"eslint-plugin-vue": "^9.17.0",
"standard": "^17.1.0",
"vite": "^4.4.9",
"vite-plugin-prismjs": "^0.0.8",
"vue-eslint-parser": "^9.3.1"
}
}