-
Notifications
You must be signed in to change notification settings - Fork 52
/
Copy pathpackage.json
133 lines (133 loc) · 3.74 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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
{
"name": "element-pro-crud",
"version": "0.9.4-14",
"author": "BoBo<[email protected]>",
"main": "lib/pro-crud.js",
"files": [
"lib",
"types"
],
"typings": "types/index.d.ts",
"description": "二次封装Table,Form组件,配套表单,表格设计器,一键Crud",
"private": false,
"license": "LGPL",
"keyword": "ElementUI,CRUD,el-table,el-form,表单设计器",
"keywords": [
"CRUD",
"ElementUI",
"el-table",
"el-form",
"表单设计器",
"表格设计器"
],
"repository": {
"type": "git",
"url": "https://github.com/BoBoooooo/Element-Pro-Crud"
},
"homepage": "https://github.com/BoBoooooo/Element-Pro-Crud#readme",
"bugs": {
"url": "https://github.com/BoBoooooo/Element-Pro-Crud/issues"
},
"scripts": {
"start": "vue-cli-service serve",
"build": "vue-cli-service build",
"lint": "vue-cli-service lint",
"report": "cross-env IS_REPORT=true npm run bundle",
"bundle": "webpack --config build/webpack.component.js",
"deploy": "npm run bundle && npm publish",
"deploy:beta": "npm run bundle && npm publish --tag=beta",
"log": "conventional-changelog --config ./node_modules/vue-cli-plugin-commitlint/lib/log -i CHANGELOG.md -s -r 0",
"cz": "npm run log && git add . && git cz"
},
"devDependencies": {
"@types/ace": "0.0.42",
"@typescript-eslint/eslint-plugin": "^2.26.0",
"@typescript-eslint/parser": "^2.26.0",
"@vue/cli-plugin-babel": "^4.5.12",
"@vue/cli-plugin-eslint": "^4.5.12",
"@vue/cli-plugin-typescript": "4.5.12",
"@vue/cli-service": "^3.9.2",
"@vue/eslint-config-airbnb": "^4.0.1",
"@vue/eslint-config-typescript": "^5.0.2",
"axios": "^0.19.2",
"babel-eslint": "^10.0.2",
"babel-plugin-component": "^1.1.1",
"cache-loader": "^4.1.0",
"chai": "^4.2.0",
"clipboard": "^2.0.1",
"commitizen": "^4.2.4",
"commitlint": "^16.1.0",
"conventional-changelog-cli": "^2.1.0",
"core-js": "2.6.5",
"cross-env": "^7.0.2",
"css-loader": "^5.2.1",
"dayjs": "1.8.20",
"element-ui": "^2.13.2",
"eslint": "^6.0.1",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-import": "^2.18.0",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-vue": "^5.2.3",
"html-webpack-include-assets-plugin": "^2.0.0",
"husky": "^3.0.9",
"inquirer": "^6.5.2",
"lint-staged": "^9.2.0",
"longest": "^2.0.1",
"mini-css-extract-plugin": "^1.4.1",
"path": "^0.12.7",
"prettier": "^2.2.1",
"progress-bar-webpack-plugin": "^2.1.0",
"right-pad": "^1.0.1",
"sass": "^1.49.0",
"sass-loader": "^7.1.0",
"style-loader": "^2.0.0",
"svg-sprite-loader": "^4.1.6",
"svgo-loader": "^2.2.1",
"terser-webpack-plugin": "^1.4.5",
"ts-loader": "^8.1.0",
"typescript": "~3.8.3",
"vue": "2.6.11",
"vue-awesome": "^3.5.4",
"vue-class-component": "^7.2.3",
"vue-cli-plugin-axios": "0.0.4",
"vue-cli-plugin-commitlint": "^1.0.12",
"vue-loader": "^15.9.6",
"vue-property-decorator": "^8.5.0",
"vue-router": "3.4.3",
"vue-template-compiler": "2.6.11",
"vuedraggable": "^2.23.2",
"webpack": "^4.35.3",
"webpack-bundle-analyzer": "^3.3.2",
"webpack-cli": "^4.6.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"src/**/*.{js,vue,ts}": [
"npm run lint",
"git add"
]
},
"config": {
"commitizen": {
"path": "./node_modules/vue-cli-plugin-commitlint/lib/cz"
}
},
"postcss": {
"plugins": {
"autoprefixer": {}
}
},
"browserslist": [
"> 1%",
"last 2 versions"
],
"dependencies": {
"@vue/composition-api": "1.0.0-rc.6",
"sortablejs": "^1.13.0"
}
}