-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
99 lines (99 loc) · 2.6 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
98
99
{
"name": "lin-cms",
"version": "0.3.6",
"private": true,
"scripts": {
"serve": "node script/plugin-get-config.js && vue-cli-service serve",
"build": "node script/plugin-get-config.js && vue-cli-service build",
"lint": "vue-cli-service lint",
"commit": "git-cz",
"plugin:init": "node script/plugin-init.js",
"plugin:new": "node script/plugin-new.js",
"plugin:reconfig": "node script/plugin-get-config.js",
"test:unit": "vue-cli-service test:unit"
},
"dependencies": {
"@antv/g2plot": "^0.11.35",
"@babel/polyfill": "^7.4.4",
"@tinymce/tinymce-vue": "^2.0.0",
"axios": "~0.18.0",
"element-ui": "^2.13.0",
"enquire.js": "^2.1.6",
"event-source-polyfill": "^1.0.7",
"fastscan": "^1.0.4",
"good-storage": "^1.1.0",
"js-cookie": "^2.2.0",
"lodash": "^4.17.14",
"mavon-editor": "^2.9.0",
"moment": "^2.24.0",
"nprogress": "^0.2.0",
"photoswipe": "^4.1.2",
"screenfull": "^4.2.0",
"swiper": "5.4.5",
"tinymce": "^5.0.1",
"tocbot": "^4.11.2",
"vue": "^2.6.10",
"vue-awesome-swiper": "^4.1.1",
"vue-croppa": "^1.3.8",
"vue-router": "^3.0.7",
"vuex": "^3.1.1",
"vuex-persist": "^2.0.1"
},
"devDependencies": {
"@vue/cli-plugin-babel": "^3.9.2",
"@vue/cli-plugin-eslint": "^3.9.2",
"@vue/cli-plugin-unit-jest": "^3.9.0",
"@vue/cli-service": "^3.9.2",
"@vue/eslint-config-airbnb": "^4.0.1",
"@vue/test-utils": "1.0.0-beta.29",
"babel-core": "7.0.0-bridge.0",
"babel-eslint": "^10.0.2",
"babel-jest": "^24.8.0",
"babel-plugin-component": "^1.1.1",
"babel-plugin-import": "^1.13.0",
"chalk": "^2.4.2",
"child_process": "^1.0.2",
"cz-conventional-changelog": "^2.1.0",
"directory-tree": "^2.2.3",
"ejs": "^2.6.2",
"eslint": "^6.0.1",
"eslint-plugin-vue": "^5.2.3",
"fs-extra": "^8.1.0",
"inquirer": "^6.5.0",
"js-yaml": "^3.13.1",
"lint-staged": "^9.5.0",
"node-sass": "^4.12.0",
"sass-loader": "^7.1.0",
"semver": "^6.2.0",
"shelljs": "^0.8.3",
"validate-npm-package-name": "^3.0.0",
"vue-markdown-loader": "^2.4.1",
"vue-template-compiler": "^2.6.10",
"yaml-front-matter": "^4.0.0"
},
"postcss": {
"plugins": {
"autoprefixer": {}
}
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 11"
],
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.{js,vue}": [
"prettier --write",
"vue-cli-service lint",
"git add"
]
}
}