-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
100 lines (100 loc) · 2.95 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
{
"name": "@cakev/admin",
"version": "0.0.1-beta.1",
"description": "",
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"commit": "git add .&&git cz"
},
"dependencies": {
"@cakev/sdk": "0.0.1-beta.5",
"@cakev/ui": "0.0.1-beta.15",
"@cakev/util": "0.0.1-beta.11",
"@jiaminghi/data-view": "^2.10.0",
"@simonwep/pickr": "^1.7.4",
"axios": "^0.21.1",
"core-js": "^3.6.5",
"html2canvas": "^1.0.0-rc.5",
"qs": "^6.9.4",
"view-design": "^4.4.0",
"vue": "2.6.14",
"vue-lazyload": "^1.3.3",
"vue-loader": "^14.2.1",
"vue-marquee-text-component": "^1.2.0",
"vue-router": "^3.4.3",
"vue-seamless-scroll": "^1.1.21",
"vuex": "^3.6.2"
},
"devDependencies": {
"@babel/plugin-proposal-decorators": "^7.13.5",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.12.1",
"@babel/plugin-proposal-optional-chaining": "^7.12.1",
"@babel/plugin-transform-classes": "^7.14.2",
"@babel/plugin-transform-runtime": "^7.12.1",
"@commitlint/cli": "^9.1.2",
"@commitlint/config-conventional": "^9.1.2",
"@prettier/plugin-pug": "^1.13.5",
"@testing-library/jest-dom": "^5.16.4",
"@types/jest": "^27.4.1",
"@typescript-eslint/eslint-plugin": "^4.20.0",
"@typescript-eslint/parser": "^4.20.0",
"@vue/cli-plugin-babel": "~4.5.0",
"@vue/cli-plugin-eslint": "~4.5.0",
"@vue/cli-plugin-typescript": "^4.5.8",
"@vue/cli-service": "^4.5.7",
"@vue/eslint-config-prettier": "^6.0.0",
"@vue/eslint-config-standard": "^5.1.2",
"@vue/eslint-config-typescript": "^7.0.0",
"babel-eslint": "^8.1.1",
"babel-jest": "^28.0.2",
"babel-plugin-import": "^1.13.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"commitizen": "^4.2.3",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^6.7.2",
"eslint-plugin-flowtype": "^5.4.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-sonarjs": "^0.6.0",
"eslint-plugin-standard": "^5.0.0",
"eslint-plugin-vue": "^6.2.2",
"iview-loader": "^1.3.0",
"git-cz": "^4.8.0",
"husky": "^4.3.8",
"jest": "^28.0.2",
"lint-staged": "^10.5.4",
"node-sass": "^4.14.1",
"prettier": "^2.2.1",
"pug": "^3.0.2",
"pug-plain-loader": "^1.0.0",
"sass-loader": "^10.2.0",
"stylelint": "^13.3.2",
"stylelint-config-prettier": "^8.0.2",
"stylelint-config-recess-order": "^2.0.4",
"stylelint-config-standard": "^20.0.0",
"stylelint-scss": "^3.19.0",
"typescript": "^4.1.5",
"vue-jest": "^3.0.7",
"vue-template-compiler": "^2.6.14"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"config": {
"commitizen": {
"path": "git-cz"
}
},
"license": "MIT",
"lint-staged": {
"*.{scss,vue}": "stylelint --config '.stylelintrc.js' --fix",
"*.{vue,ts,js}": "eslint --fix",
"*.{js,jsx,ts,tsx,html,css,vue,less,scss}": "prettier --plugin-search-dir ./node_modules --write"
}
}