-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·111 lines (111 loc) · 4.3 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
{
"name": "@form-component/common-antd-vue",
"version": "0.3.10",
"description": "组件库开发及组件复用",
"main": "lib/index.js",
"module": "esm/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "webpack-dev-server --mode development",
"build:commonjs": "cross-env BABEL_OUTPUT=commonjs babel src/components --out-dir lib/ --ignore **/__tests__,**/__mocks__",
"build:esm": "babel src/components --out-dir esm/ --ignore **/__tests__,**/__mocks__",
"copy-css:esm": "cpx \"src/components/**/*.css\" esm",
"copy-css:lib": "cpx \"src/components/**/*.css\" lib",
"copy-vue:lib": "cpx \"src/components/**/*.vue\" lib",
"copy-vue:esm": "cpx \"src/components/**/*.vue\" esm",
"build:lib": "rm -rf lib && npm run build:commonjs && npm run copy-vue:lib && npm run copy-css:lib",
"build:esm:dev": "rm -rf esm && npm run build:esm && npm run copy-vue:esm && npm run copy-css:esm",
"build": "npm run build:lib && npm run build:esm:dev",
"doc:server": "npx styleguidist server --config webpack.doc.js",
"doc:build": "npx styleguidist build",
"publish:dev": "npm publish --access public",
"build:vue":"cross-env vue build index.vue"
},
"repository": {
"type": "git",
"url": "https://github.com/scottdao/common-component-vue.git"
},
"author": "scottdao",
"license": "ISC",
"files": [
"lib",
"esm"
],
"keywords": [
"vue3-editor",
"ant-design-vue",
"form",
"vue3-hooks"
],
"peerDependencies": {
"@vue/compiler-sfc": "^3.0.11",
"react": ">=16.14.0",
"vue": ">=3.0.9"
},
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.4",
"@babel/plugin-proposal-class-properties": "^7.13.0",
"@babel/plugin-proposal-export-default-from": "^7.12.13",
"@babel/plugin-proposal-export-namespace-from": "^7.12.13",
"@babel/plugin-proposal-object-rest-spread": "^7.13.8",
"@babel/plugin-proposal-optional-chaining": "^7.13.12",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-transform-object-assign": "^7.12.13",
"@babel/plugin-transform-runtime": "^7.13.15",
"@babel/preset-env": "^7.4.5",
"@babel/preset-stage-0": "^7.0.0",
"@babel/preset-typescript": "^7.13.0",
"@vue/babel-plugin-jsx": "^1.0.5",
"antd": "^3.11.2",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.6",
"cpx": "^1.5.0",
"cross-env": "^5.2.0",
"css-loader": "^2.1.1",
"eslint": "^5.16.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-import": "^2.17.2",
"eslint-plugin-jsx-a11y": "^6.2.1",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^3.2.0",
"prop-types": "^15.7.2",
"react": "^16.14.0",
"react-dom": "^16.14.0",
"react-styleguidist": "^11.1.6",
"style-loader": "^0.23.1",
"styled-components": "^4.2.0",
"ts-loader": "^9.1.1",
"vue": "^3.0.9",
"vue-antd-md-loader": "^1.2.1-beta.1",
"vue-clipboard2": "0.3.1",
"vue-draggable-resizable": "^2.1.0",
"vue-eslint-parser": "^7.0.0",
"vue-i18n": "^9.0.0-alpha.11",
"vue-infinite-scroll": "^2.0.2",
"vue-jest": "^5.0.0-alpha.3",
"vue-loader": "^16.1.1",
"vue-request": "^1.0.2",
"vue-router": "^4.0.0",
"vue-server-renderer": "^2.6.11",
"vue-style-loader": "^4.1.2",
"vue-styleguidist": "^4.43.0",
"vuex": "^4.0.0-beta.2",
"webpack": "^4.30.0",
"webpack-cli": "^3.3.2",
"webpack-dev-server": "^3.3.1"
},
"dependencies": {
"@ant-design-vue/use": "^0.0.1-alpha.9",
"@ant-design/icons-vue": "^6.0.1",
"@types/lodash": "^4.14.162",
"ant-design-vue": "^2.1.3",
"katex": "^0.13.13",
"moment": "^2.29.1",
"quill": "^2.0.0-dev.3",
"quill-better-table": "^1.2.10",
"quill-emoji": "^0.2.0",
"quill-image-drop-module": "^1.0.3",
"yarn": "^1.22.17"
}
}