-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
82 lines (82 loc) · 2.19 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
{
"name": "color-statistics",
"version": "0.0.9",
"description": "colored statistics card",
"repository": {
"type": "git",
"url": "[email protected]:ybzjsxh/color-statistics.git"
},
"keywords": [
"react",
"statistics",
"card"
],
"author": "musiq841",
"license": "MIT",
"bugs": {
"url": "https://github.com/ybzjsxh/color-statistics/issues"
},
"homepage": "https://github.com/ybzjsxh/color-statistics#readme",
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"files": [
"dist",
"lib",
"es",
"assets/*.css",
"assets/*.less"
],
"main": "lib/index",
"module": "es/index",
"scripts": {
"build": "father doc build --storybook",
"compile": "father build && lessc src/index.less src/index.css && lessc assets/bootstrap.less assets/bootstrap.css && lessc assets/bootstrap_white.less assets/bootstrap_white.css",
"coverage": "father test --coverage",
"lint": "eslint src/ examples/ --ext .tsx,.ts,.jsx,.js",
"now-build": "npm run build",
"prepublishOnly": "npm run compile && np --no-cleanup --yolo --no-publish",
"start": "cross-env NODE_ENV=development father doc dev --storybook",
"test": "father test",
"gh-pages": "npm run build && father doc deploy",
"update:deps": "yarn upgrade-interactive --latest"
},
"dependencies": {
"@ant-design/icons": "^4.2.2",
"rc-tooltip": "^4.2.1"
},
"gitHooks": {
"pre-commit": "lint-staged",
"commit-msg": "node scripts/verifyCommit.js"
},
"lint-staged": {
"*.{js,jsx,less,md,json}": [
"prettier --write"
],
"*.ts?(x)": [
"prettier --parser=typescript --write"
]
},
"devDependencies": {
"@types/react": "^16.9.9",
"@types/react-dom": "^16.9.2",
"@types/warning": "^3.0.0",
"chalk": "^4.1.0",
"cross-env": "7.0.2",
"eslint": "^7.1.0",
"eslint-plugin-react-hooks": "^4.0.8",
"father": "2.29.6",
"less": "^3.12.2",
"lint-staged": "^10.2.11",
"np": "6.3.2",
"prettier": "^2.0.5",
"react": "^16.10.2",
"react-dom": "^16.10.2",
"typescript": "^3.6.4",
"yorkie": "^2.0.0"
},
"peerDependencies": {
"react": "^16.12.2",
"react-dom": "^16.12.2"
}
}