-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
113 lines (113 loc) · 2.78 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
109
110
111
112
113
{
"name": "kabi-ui",
"version": "0.1.0",
"description": "Kabi is a react UI library.",
"main": "lib/index.js",
"module": "es/index.js",
"unpkg": "umd/kabi.min.js",
"scripts": {
"build": "rollup -c",
"start": "rollup -c -w",
"doc:dev": "docz dev",
"doc:build": "docz build",
"doc:serve": "docz build && docz serve"
},
"bin": {
"gen": "bin/gen"
},
"files": [
"umd",
"lib",
"es",
"src"
],
"repository": {
"type": "git",
"url": "git+https://github.com/niubiger/kabi-ui.git"
},
"keywords": [
"react",
"react-component",
"component",
"components",
"ui",
"kabi"
],
"maintainers": [
"winjeysong<[email protected]>",
"qianyuanjia"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/niubiger/kabi-ui/issues"
},
"homepage": "https://github.com/niubiger/kabi-ui#readme",
"engines": {
"node": ">=8",
"npm": ">=5"
},
"dependencies": {
"@emotion/core": "^10.0.28",
"@fortawesome/fontawesome-svg-core": "^1.2.28",
"@fortawesome/free-solid-svg-icons": "^5.13.0",
"@fortawesome/react-fontawesome": "^0.1.9",
"animejs": "^3.2.0",
"classnames": "^2.2.6",
"framer-motion": "^1.10.3",
"lodash": "^4.17.19"
},
"devDependencies": {
"@types/animejs": "^3.1.0",
"@babel/core": "^7.0.0",
"@babel/plugin-external-helpers": "^7.8.3",
"@babel/preset-env": "^7.9.0",
"@babel/preset-react": "^7.9.1",
"@svgr/rollup": "^5.2.0",
"@types/classnames": "^2.2.10",
"@types/react": "^16.9.25",
"@types/react-dom": "^16.9.5",
"@types/react-fontawesome": "^1.6.4",
"babel-eslint": "^9.0.0",
"babel-plugin-dynamic-import-webpack": "^1.1.0",
"docz": "^2.2.0",
"docz-plugin-css": "^0.11.0",
"eslint": "^5.4.0",
"eslint-config-umi": "^1.4.0",
"eslint-plugin-flowtype": "^2.50.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^5.1.1",
"eslint-plugin-react": "^7.11.1",
"gatsby-plugin-sass": "^2.2.1",
"husky": "^3.1.0",
"lint-staged": "^9.5.0",
"node-sass": "^4.13.1",
"postcss": "^7.0.27",
"prettier": "^1.19.1",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"rollup": "^2.1.0",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-peer-deps-external": "^2.2.2",
"rollup-plugin-postcss": "^2.5.0",
"rollup-plugin-replace": "^2.2.0",
"rollup-plugin-uglify": "^6.0.4",
"rollup-plugin-url": "^3.0.1"
},
"peerDependencies": {
"react": "^16.8.0",
"react-dom": "^16.8.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx,scss,css}": [
"prettier --write",
"git add"
]
}
}