This repository has been archived by the owner on Aug 9, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
97 lines (97 loc) · 2.5 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "kolenka-frontend",
"version": "0.3.9",
"private": true,
"scripts": {
"serve": "vue-cli-service serve",
"serve:prod": "vue-cli-service serve --mode production",
"build": "vue-cli-service build --mode staging && npm version patch --no-git-tag-version",
"build-prod": "vue-cli-service build && npm version patch --no-git-tag-version",
"release": "vue-cli-service build && npm version $TYPE -m \"$MESSAGE\" && git push && git push --tags",
"lint": "vue-cli-service lint"
},
"dependencies": {
"@caohenghu/vue-colorpicker": "^1.2.4",
"axios": "^0.21.1",
"babel-polyfill": "^6.26.0",
"core-js": "^3.8.1",
"feather-icons": "^4.28.0",
"highlight.js": "^10.5.0",
"indent.js": "^0.3.5",
"lodash": "^4.17.20",
"logdown": "^3.3.1",
"moment": "^2.29.1",
"npm-check-updates": "^10.2.5",
"popper.js": "^1.16.1",
"prosemirror-state": "1.3.3",
"prosemirror-tables": "^1.1.1",
"speakingurl": "^14.0.1",
"spectre.css": "^0.5.9",
"throttle-debounce": "^3.0.1",
"tiptap": "1.30.0",
"tiptap-commands": "1.15.0",
"tiptap-extensions": "1.33.2",
"v-runtime-template": "^1.10.0",
"vue": "^2.6.12",
"vue-content-loading": "^1.6.0",
"vue-feather": "^1.1.1",
"vue-meta": "^2.4.0",
"vue-progressbar": "^0.7.5",
"vue-router": "^3.4.9",
"vue-scrollto": "^2.20.0",
"vuex": "^3.6.0"
},
"devDependencies": {
"@babel/plugin-proposal-object-rest-spread": "^7.12.1",
"@babel/plugin-transform-react-jsx": "^7.12.12",
"@vue/cli-plugin-babel": "^4.5.9",
"@vue/cli-plugin-eslint": "^4.5.9",
"@vue/cli-service": "^4.5.9",
"babel-eslint": "^10.1.0",
"eslint": "^7.16.0",
"eslint-plugin-vue": "^7.4.0",
"node-sass": "^5.0.0",
"sass": "^1.30.0",
"sass-loader": "^10.1.0",
"vue-template-compiler": "^2.6.12",
"webpack-bundle-analyzer": "^4.3.0"
},
"eslintConfig": {
"root": true,
"env": {
"node": true
},
"extends": [
"plugin:vue/essential",
"eslint:recommended"
],
"rules": {
"no-console": "off",
"no-unused-vars": [
"warn",
{
"varsIgnorePattern": "^_.*",
"argsIgnorePattern": "^_.*"
}
],
"no-empty": "warn",
"indent": [
"warn",
2
]
},
"parserOptions": {
"parser": "babel-eslint"
}
},
"postcss": {
"plugins": {
"autoprefixer": {}
}
},
"browserslist": [
"> 1%",
"last 2 versions",
"Edge 14"
]
}