-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
116 lines (116 loc) · 3.51 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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
{
"name": "vue-pandora",
"version": "1.4.0",
"description": "A component library of custom secondary encapsulation about element-ui",
"main": "./lib/vuepandora.umd.js",
"module": "./lib/vuepandora.common.js",
"browser": "./lib/vuepandora.umd.js",
"repository": "https://github.com/yelingfeng/vue-pandora.git",
"author": "yelngfeng <[email protected]>",
"license": " MIT",
"scripts": {
"dev": "vue-cli-service serve --open",
"lib": "vue-cli-service build --target lib --name vuepandora ./index.ts",
"lint": "vue-cli-service lint ",
"docs:dev": "vuepress dev docs",
"docs:build": "vuepress build docs",
"docs:push": "node ./build/ghpage-push.ts",
"commit": "git-cz",
"test": "jest",
"test:docs": "cd storybook-static && python -m SimpleHTTPServer 3333 ",
"version": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0 && git add CHANGELOG.md",
"publish": "npm publish",
"reinstall": "rimraf yarn.lock && rimraf package.lock.json && rimraf node_modules && yarn install"
},
"files": [
"types",
"lib"
],
"dependencies": {
"@vueuse/core": "5.1.3",
"async-validator": "1.11.5",
"blueimp-md5": "^2.19.0",
"core-js": "^3.32.2",
"dayjs": "^1.8.23",
"echarts": "^5.2.2",
"echarts-liquidfill": "^3.1.0",
"echarts-wordcloud": "^2.1.0",
"element-ui": "2.15.8",
"sortablejs": "^1.15.6",
"vue": "2.6.11",
"vue-server-renderer": "2.6.11",
"vuedraggable": "^2.24.3"
},
"devDependencies": {
"@babel/runtime": "^7.15.4",
"@types/jest": "^25.2.1",
"@types/lodash-es": "^4.17.4",
"@types/mockjs": "^1.0.2",
"@types/node": "^13.9.1",
"@typescript-eslint/eslint-plugin": "^2.18.0",
"@typescript-eslint/parser": "^2.18.0",
"@vue/babel-preset-app": "^4.3.0",
"@vue/babel-preset-jsx": "^1.2.4",
"@vue/cli-plugin-babel": "~4.2.0",
"@vue/cli-plugin-eslint": "~4.2.0",
"@vue/cli-plugin-typescript": "~4.2.0",
"@vue/cli-plugin-unit-jest": "^4.3.1",
"@vue/cli-service": "^4.5.13",
"@vue/composition-api": "^1.7.1",
"@vue/eslint-config-prettier": "^6.0.0",
"@vue/eslint-config-typescript": "^5.0.1",
"@vue/test-utils": "^1.0.0-beta.32",
"@vuepress/plugin-back-to-top": "^1.9.7",
"axios": "^0.21.1",
"babel-loader": "^8.1.0",
"commitizen": "^4.0.3",
"cross-env": "^7.0.3",
"cz-conventional-changelog": "^3.1.0",
"eslint": "^6.7.2",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-vue": "^6.1.2",
"gh-pages": "^2.2.0",
"github-markdown-css": "^4.0.0",
"highlight.js": "^11.4.0",
"husky": "^4.2.3",
"jest": "^25.2.7",
"less": "^3.0.4",
"less-loader": "^5.0.0",
"lint-staged": "^10.0.8",
"lodash-es": "^4.17.21",
"mockjs": "^1.1.0",
"prettier": "^1.19.1",
"raw-loader": "^4.0.2",
"rimraf": "^3.0.2",
"sass": "1.32.13",
"sass-loader": "^8.0.2",
"ts-jest": "^25.3.1",
"typescript": "4.2",
"vue-class-component": "^7.2.2",
"vue-jest": "^3.0.5",
"vue-markdown-loader": "^2.4.1",
"vue-property-decorator": "^8.3.0",
"vue-router": "3.0.1",
"vue-template-compiler": "2.6.11",
"vuepress": "^1.9.7",
"vuepress-plugin-typescript": "^0.2.0",
"webpack-merge": "^5.2.0",
"yarn": "^1.22.4"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,ts?(x),json,md}": [
"prettier --write",
"git add"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}