-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·108 lines (108 loc) · 3.27 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
{
"private": true,
"author": "eternallycyf <[email protected]>",
"scripts": {
"autotest": "node test",
"biz-init": "ts-node scripts/generateBizConfig.ts",
"build": "max build",
"build:dev": "yarn biz-init && cross-env NODE_ENV=development max build",
"build:pro": "yarn biz-init && cross-env NODE_ENV=production max build",
"deploy": "bash ./deploy.sh",
"format": "prettier --cache --write .",
"lint-fix:script": "npm run lint:script -- --fix",
"lint:script": "eslint . --ext .js,.jsx,.ts,.tsx --cache",
"prepare": "husky install",
"prettier": "prettier --write \"**/*.{js,jsx,tsx,ts,less,md,json}\"",
"start": "rm -rf ./src/pages/.DS_Store && yarn biz-init && cross-env NODE_ENV=development max dev"
},
"lint-staged": {
"*.{js,jsx,less,md,json}": [
"prettier --write"
],
"*.ts?(x)": [
"prettier --parser=typescript --write"
]
},
"dependencies": {
"@ant-design/charts": "^1.4.2",
"@ant-design/icons": "^5.2.4",
"@antv/data-set": "^0.11.4",
"@dnd-kit/core": "^6.0.8",
"@umijs/max": "^4.0.40",
"ahooks": "^3.7.8",
"antd": "^5.8.2",
"antd-img-crop": "^4.11.0",
"braft-editor": "^2.3.9",
"braft-extensions": "^0.1.1",
"braft-utils": "^3.0.12",
"classnames": "^2.2.6",
"d3": "^7.8.5",
"docx-preview": "^0.1.11",
"docxtemplater": "3.5",
"draft-js-prism": "^1.0.6",
"echarts": "^4.8.0",
"echarts-for-react": "^3.0.2",
"echarts-stat": "^1.2.0",
"exceljs": "^4.3.0",
"file-saver": "^2.0.5",
"immutability-helper": "^3.1.1",
"js-cookie": "^3.0.1",
"jszip": "^3.10.1",
"jszip-utils": "^0.1.0",
"leaflet": "^1.9.3",
"lodash": "^4.17.19",
"open-docxtemplater-image-module": "^1.0.3",
"pizzip": "^3.1.1",
"prismjs": "^1.29.0",
"puppeteer": "^19.7.3",
"react-dnd": "^16.0.1",
"react-dnd-html5-backend": "^16.0.1",
"react-draggable": "^4.4.5",
"react-error-boundary": "^4.0.10",
"react-error-overlay": "^6.0.11",
"react-excel-renderer": "^1.1.0",
"react-file-viewer": "^1.2.1",
"react-markdown": "^8.0.3",
"react-resizable": "^3.0.4",
"react-sticky-box": "^2.0.4",
"react-syntax-highlighter": "^15.5.0",
"react-use": "^17.4.0",
"react-window": "^1.8.8",
"redux-persist": "^6.0.0",
"remark-gfm": "^3.0.1",
"runes2": "^1.1.2",
"rxjs": "^7.8.1",
"rxjs-hooks": "^0.8.0-alpha.0",
"video.js": "^8.3.0",
"world_countries_lists": "^2.8.2"
},
"devDependencies": {
"@types/echarts": "^4.9.16",
"@types/ejs": "^3.1.1",
"@types/js-cookie": "^3.0.2",
"@types/leaflet": "^1.9.3",
"@types/lodash": "^4.14.191",
"@types/react": "^18.0.0",
"@types/react-dom": "^18.0.0",
"@types/react-resizable": "^3.0.3",
"@types/react-window": "^1.8.5",
"@types/video.js": "^7.3.52",
"@umijs/preset-react": "1.x",
"cross-env": "^7.0.3",
"ejs": "^3.1.8",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"mockjs": "^1.1.0",
"prettier": "^2.7.1",
"prettier-plugin-organize-imports": "^2",
"prettier-plugin-packagejson": "^2",
"react-dev-inspector": "^1.8.4",
"tailwindcss": "^3",
"ts-node": "^10.9.0",
"typescript": "^4.1.2",
"yorkie": "^2.0.0"
},
"gitHooks": {
"pre-commit": "lint-staged"
}
}