-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
94 lines (94 loc) · 2.66 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
{
"name": "screen-template",
"version": "1.0.0",
"description": "杭州雷数前端大屏模板",
"license": "MIT",
"author": "陈杰 <[email protected]>",
"homepage": "https://github.com/thundersdata-frontend/screen-template#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/thundersdata-frontend/screen-template.git"
},
"bugs": {
"url": "https://github.com/thundersdata-frontend/screen-template/issues"
},
"scripts": {
"commit": "git-cz",
"start": "cross-env UMI_UI=1 umi dev",
"analyze": "cross-env ANALYZE=1 umi build",
"build": "cross-env UMI_ENV=prod umi build",
"test": "jest --passWithNoTests",
"tsc": "tsc -p ./tsconfig.json",
"eslint:fix": "eslint --fix --ext .ts,.tsx src/",
"lint:fix": "prettier --check src/**/*.tsx --write"
},
"config": {
"commitizen": {
"path": "node_modules/cz-customizable"
}
},
"changelog": {
"emojis": true,
"authorName": true,
"authorEmail": true
},
"husky": {
"hooks": {
"pre-commit": "npm run tsc && npm run eslint:fix && npm run lint:fix && lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"src/**/*.{ts,tsx}": [
"git add ."
]
},
"dependencies": {
"@ant-design/icons": "^4.0.6",
"@td-design/charts": "^2.4.0",
"@types/echarts": "^4.6.0",
"@umijs/hooks": "^1.9.2",
"@umijs/plugin-esbuild": "^1.0.0-beta.2",
"@umijs/preset-react": "1.x",
"antd": "^4.2.0",
"classnames": "^2.2.6",
"echarts": "^4.7.0",
"immer": "^6.0.5",
"lscache": "^1.3.0",
"normalize.css": "^8.0.1",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"umi": "^3.1.1",
"use-immer": "^0.4.0"
},
"devDependencies": {
"@babel/core": "^7.7.4",
"@babel/preset-typescript": "^7.7.4",
"@commitlint/cli": "^8.2.0",
"@commitlint/config-conventional": "^8.2.0",
"@types/classnames": "^2.2.10",
"@types/lodash": "^4.14.150",
"@types/lscache": "^1.3.0",
"@types/react": "^16.9.12",
"@types/react-dom": "^16.9.6",
"@typescript-eslint/eslint-plugin": "3.0.2",
"@typescript-eslint/parser": "3.0.2",
"@umijs/fabric": "^2.0.8",
"@umijs/preset-ui": "^2.1.13",
"babel-eslint": "^10.1.0",
"commitizen": "^4.0.4",
"conventional-changelog-cli": "^2.0.28",
"conventional-changelog-custom-config": "^0.3.1",
"cross-env": "^7.0.2",
"cz-customizable": "^6.2.0",
"husky": "^4.2.5",
"lint-staged": "^10.1.6",
"pont-engine": "^1.0.3",
"standard-version": "^8.0.0",
"typescript": "^3.8.3",
"umi-plugin-page-creator": "^1.3.2"
},
"engines": {
"node": ">=8.0.0"
}
}