-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
74 lines (74 loc) · 2.1 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
{
"name": "patchyvideo",
"version": "0.4.2",
"private": true,
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"lint": "vue-cli-service lint",
"i18n": "node ./scripts/i18n",
"format": "prettier --config .prettierrc.js --write \"{src,i18n,scripts}/**/*.{html,htm,js,jsx,ts,tsx,css,less,scss,sass,vue,json}\""
},
"dependencies": {
"axios": "^0.19.2",
"core-js": "^3.6.5",
"dashjs": "^3.1.3",
"dplayer": "github:zyddnys/DPlayer",
"echarts": "^4.9.0",
"element-ui": "^2.13.2",
"filesize": "^6.1.0",
"flv.js": "^1.5.0",
"font-awesome": "^4.7.0",
"highlight.js": "^10.3.0",
"html-entities": "^1.3.1",
"jquery": "^3.5.1",
"markdown-it": "^11.0.1",
"markdown-it-abbr": "^1.0.4",
"markdown-it-container": "^3.0.0",
"markdown-it-deflist": "^2.1.0",
"markdown-it-footnote": "^3.0.2",
"markdown-it-ins": "^3.0.0",
"markdown-it-mark": "^3.0.0",
"markdown-it-sub": "^1.0.0",
"markdown-it-sup": "^1.0.0",
"node-webvtt": "^1.9.3",
"vue": "^2.6.12",
"vue-axios": "^2.1.5",
"vue-cropper": "^0.5.5",
"vue-i18n": "^8.22.0",
"vue-linkify": "^1.0.1",
"vue-meta": "^2.4.0",
"vue-router": "^3.4.7",
"vue-typed-js": "github:Orlandster/vue-typed-js#0.2.0",
"vuex": "^3.5.1"
},
"devDependencies": {
"@commitlint/cli": "^9.1.2",
"@vue/cli-plugin-babel": "^4.5.7",
"@vue/cli-plugin-eslint": "^4.5.7",
"@vue/cli-plugin-router": "^4.5.7",
"@vue/cli-plugin-vuex": "^4.5.7",
"@vue/cli-service": "^4.5.7",
"@vue/eslint-config-prettier": "^6.0.0",
"babel-eslint": "^10.1.0",
"colors": "^1.4.0",
"eslint": "^7.11.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-vue": "^7.0.1",
"less-loader": "^6.2.0",
"lint-staged": "^10.4.2",
"lodash": "^4.17.20",
"moment": "^2.29.1",
"prettier": "^1.19.1",
"vue-template-compiler": "^2.6.12"
},
"gitHooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E GIT_PARAMS"
},
"lint-staged": {
"*.{js,vue}": [
"vue-cli-service lint"
]
}
}