-
Notifications
You must be signed in to change notification settings - Fork 312
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 2.33 KB
/
package.json
File metadata and controls
96 lines (96 loc) · 2.33 KB
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
{
"name": "dqm-ui-next",
"version": "1.1.0",
"description": "新版qualities页面",
"scripts": {
"build": "fes build",
"prod": "FES_ENV=prod fes build",
"analyze": "ANALYZE=1 fes build",
"dev": "fes dev",
"test-sit": "FES_ENV=sit fes build",
"test-dev": "FES_ENV=dev fes build",
"test-uat": "FES_ENV=uat fes build",
"test:unit": "fes test:unit",
"prepare": "husky install",
"commit": "git-cz"
},
"keywords": [
"qualities",
"fes",
"fast",
"easy",
"strong"
],
"files": [
".eslintrc.js",
".gitignore",
".fes.js",
".fes.prod.js",
"mock.js",
"package.json",
"README.md",
"tsconfig.json",
"/src",
"/config"
],
"repository": {
"type": "git",
"url": "git+https://github.com/WeBankFinTech/fes.js.git",
"directory": "packages/fes-template"
},
"author": "harrywan",
"license": "MIT",
"bugs": {
"url": "https://github.com/WeBankFinTech/fes.js/issues"
},
"homepage": "https://github.com/WeBankFinTech/fes.js#readme",
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@commitlint/config-conventional": "15.0.0",
"@vue/compiler-sfc": "3.2.26",
"@webank/eslint-config-webank": "0.4.2",
"commitlint": "15.0.0",
"cz-conventional-changelog": "3.3.0",
"husky": "7.0.4",
"lint-staged": "12.1.2"
},
"dependencies": {
"@fesjs/fes": "2.0.14",
"@fesjs/fes-design": "0.7.18",
"@fesjs/plugin-access": "2.0.3",
"@fesjs/plugin-enums": "2.0.2",
"@fesjs/plugin-icon": "2.0.6",
"@fesjs/plugin-locale": "3.0.3",
"@fesjs/plugin-model": "2.0.3",
"@fesjs/plugin-monaco-editor": "2.0.0-beta.7",
"@fesjs/plugin-request": "2.0.12",
"@fesjs/plugin-watermark": "2.0.3",
"@fesjs/traction-widget": "^1.7.3",
"@micro-zoe/micro-app": "0.8.10",
"babel-plugin-syntax-jsx": "6.18.0",
"date-fns": "2.28.0",
"dayjs": "1.11.5",
"echarts": "5.2.2",
"lodash-es": "4.18.1",
"mitt": "3.0.0",
"vue": "3.2.26",
"vuex": "4.0.2"
},
"private": true,
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"lint-staged": {
"*.{js,ts,jsx,tsx,vue,fes,wxa}": "eslint --fix"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E $HUSKY_GIT_PARAMS"
}
}
}