-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
59 lines (59 loc) · 1.55 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
{
"private": true,
"scripts": {
"commit": "git-cz",
"start": "max dev",
"build": "max build",
"tsc": "tsc -p ./tsconfig.json",
"prettier": "prettier --write --cache --cache-strategy metadata \"**/*.{tsx,ts}\"",
"postinstall": "npx husky install && max setup"
},
"config": {
"commitizen": {
"path": "node_modules/cz-customizable"
}
},
"lint-staged": {
"src/**/*.{ts,tsx}": [
"prettier --write --ignore-unknown"
]
},
"dependencies": {
"@td-design/lego": "^3.1.1",
"@td-design/lego-map": "^1.4.1",
"@types/echarts": "^4.9.17",
"@umijs/max": "^4.0.66",
"ahooks": "^3.7.6",
"antd": "^5.4.5",
"classnames": "^2.3.2",
"echarts": "^5.4.2",
"echarts-for-react": "^3.0.2",
"jotai": "^2.0.4",
"lodash-es": "^4.17.21",
"normalize.css": "^8.0.1"
},
"devDependencies": {
"@commitlint/cli": "^17.6.1",
"@commitlint/config-conventional": "^17.6.1",
"@trivago/prettier-plugin-sort-imports": "^4.1.1",
"@types/lodash-es": "^4.17.7",
"@types/react": "^18.0.38",
"@types/react-dom": "^18.0.11",
"commitizen": "^4.3.0",
"conventional-changelog-cli": "^2.2.2",
"conventional-changelog-custom-config": "^0.3.1",
"cross-env": "^7.0.3",
"cz-customizable": "^7.0.0",
"husky": "^8.0.3",
"lint-staged": "^13.2.1",
"prettier": "^2.8.8",
"prettier-plugin-packagejson": "^2.4.3",
"standard-version": "^9.5.0",
"typescript": "^5.0.4"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=14",
"pnpm": ">=7.0.0"
}
}