-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 2.18 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
72
73
74
75
76
{
"name": "vue-code-editor",
"version": "0.1.1",
"private": true,
"description": "A code editor sample base on Vue 3 and CodeMirror 6.",
"author": "Cesar Lai",
"license": "MIT",
"homepage": ".",
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"lint": "vue-cli-service lint"
},
"dependencies": {
"@codemirror/closebrackets": "^0.18.0",
"@codemirror/commands": "^0.18.2",
"@codemirror/comment": "^0.18.0",
"@codemirror/fold": "^0.18.1",
"@codemirror/gutter": "^0.18.2",
"@codemirror/highlight": "^0.18.3",
"@codemirror/history": "^0.18.1",
"@codemirror/lang-javascript": "^0.18.0",
"@codemirror/lint": "^0.18.2",
"@codemirror/matchbrackets": "^0.18.0",
"@codemirror/panel": "^0.18.1",
"@codemirror/state": "^0.18.7",
"@codemirror/text": "^0.18.0",
"@codemirror/tooltip": "^0.18.4",
"@codemirror/view": "^0.18.11",
"core-js": "^3.6.5",
"marked": "^2.0.7",
"mockjs": "^1.1.0",
"prismjs": "^1.23.0",
"qs": "^6.10.1",
"vue": "^3.0.0",
"vue-class-component": "^8.0.0-0",
"vue-router": "^4.0.0-0",
"vuex": "^4.0.0-0",
"vuex-class": "^0.3.2",
"xterm": "^4.12.0"
},
"devDependencies": {
"@types/marked": "^2.0.3",
"@types/prismjs": "^1.16.5",
"@types/qs": "^6.9.6",
"@types/webpack-env": "^1.16.0",
"@typescript-eslint/eslint-plugin": "^4.18.0",
"@typescript-eslint/parser": "^4.18.0",
"@vue/cli-plugin-babel": "~4.5.0",
"@vue/cli-plugin-eslint": "~4.5.0",
"@vue/cli-plugin-router": "~4.5.0",
"@vue/cli-plugin-typescript": "~4.5.0",
"@vue/cli-plugin-vuex": "~4.5.0",
"@vue/cli-service": "~4.5.0",
"@vue/compiler-sfc": "^3.0.0",
"@vue/eslint-config-prettier": "^6.0.0",
"@vue/eslint-config-typescript": "^7.0.0",
"eslint": "^6.7.2",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-vue": "^7.0.0",
"lint-staged": "^9.5.0",
"prettier": "^2.2.1",
"sass": "^1.26.5",
"sass-loader": "^8.0.2",
"typescript": "~4.1.5"
},
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.{js,jsx,vue,ts,tsx}": [
"vue-cli-service lint",
"git add"
]
}
}