-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
86 lines (86 loc) · 2.58 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
{
"name": "qms-core",
"description": "QMS core component dependency libraries",
"version": "2.1.7",
"main": "lib/index.js",
"module": "es/index.js",
"typings": "lib/index.js",
"keywords": [
"qms-core"
],
"license": "ISC",
"scripts": {
"start": "umi dev",
"build": "umi build",
"build:component": "npx umi-library build --esm babel --mjs babel",
"postinstall": "umi generate tmp",
"lint": "umi g tmp && yarn lint:js && yarn lint:style && yarn lint:prettier && yarn tsc",
"lint-staged": "lint-staged",
"lint-staged:js": "eslint --ext .js,.jsx,.ts,.tsx ",
"lint:fix": "eslint --fix --cache --ext .js,.jsx,.ts,.tsx --format=pretty ./src &&yarn lint:style",
"lint:js": "eslint --cache --ext .js,.jsx,.ts,.tsx --format=pretty ./src",
"lint:prettier": "prettier -c --write \"src/**/*\" --end-of-line auto",
"lint:style": "stylelint --fix \"src/**/*.less\" --syntax less",
"prettier": "prettier -c --write \"src/**/*\"",
"test:coverage": "umi-test --coverage"
},
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.{js,jsx,less,md,json}": [
"prettier --write"
],
"*.ts?(x)": [
"prettier --parser=typescript --write"
]
},
"dependencies": {
"@ant-design/charts": "^1.3.5",
"@ant-design/compatible": "^1.1.0",
"@ant-design/icons": "^4.7.0",
"@ant-design/pro-layout": "^6.5.0",
"@ant-design/pro-table": "^2.63.0",
"@hanyk/rc-viewer": "^0.0.3",
"ace-builds": "^1.7.1",
"antd": "^4.22.4",
"antd-dayjs-webpack-plugin": "^1.0.6",
"array-move": "^4.0.0",
"axios": "^0.25.0",
"bpmn-js": "^7.3.0",
"braft-editor": "^2.3.9",
"core-js": "^3.21.1",
"echarts": "^5.3.3",
"echarts-for-react": "^3.0.2",
"js-base64": "^3.7.2",
"lodash-es": "^4.17.21",
"mathjs": "^10.4.3",
"re-resizable": "^6.9.1",
"react": "17.x",
"react-ace": "^10.1.0",
"react-base-table": "^1.13.0",
"react-color": "^2.19.3",
"react-dom": "17.x",
"react-draggable": "^4.4.5",
"react-pdf": "^5.7.0",
"react-virtualized-auto-sizer": "^1.0.6",
"styled-components": "^5.3.3",
"umi": "^3.5.20",
"use-merge-value": "^1.0.2",
"x-data-spreadsheet": "^1.1.9",
"xlsx": "^0.18.5"
},
"devDependencies": {
"umi-library": "1.6.0",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"@umijs/fabric": "^3.0.0",
"@umijs/preset-react": "1.x",
"@umijs/test": "^3.5.20",
"lint-staged": "^10.0.7",
"prettier": "^2.2.0",
"react-svg": "^15.1.3",
"typescript": "^4.1.2",
"yorkie": "^2.0.0"
}
}