-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
55 lines (55 loc) · 1.42 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
{
"name": "racc",
"version": "0.3.7",
"description": "React Antd 通用组件解决方案",
"main": "./dist/index.esm.js",
"module": "./dist/index.esm.js",
"typings": "./dist/index.d.ts",
"authors": {
"name": "mingshined",
"email": "[email protected]"
},
"repository": "/react-antd-components",
"files": [
"dist"
],
"scripts": {
"public": "yarn run test && yarn publish",
"test": "umi-test",
"start": "umi-lib doc dev",
"build": "umi-lib build",
"build:docz": "umi-lib doc build",
"lint:test": "tslint -c tslint.json -p tsconfig.json",
"lint:fix": "tslint -p tsconfig.json --fix",
"preupload": "git add .",
"upload": "git commit -am",
"precommit": "npm run lint:test",
"postcommit": "git push"
},
"peerDependencies": {
"react": "16.x"
},
"devDependencies": {
"@types/lodash": "^4.14.132",
"babel-plugin-import": "^1.11.0",
"babel-plugin-module-resolver": "^3.1.1",
"docz": "1.0.4",
"docz-theme-default": "^1.0.4",
"docz-theme-umi": "^2.1.1",
"docz-theme-yuque": "^1.0.2",
"husky": "^0.14.3",
"ts-jest-babel-7": "^22.0.7",
"tslint": "^5.11.0",
"tslint-config-airbnb": "^5.11.0",
"tslint-react": "^3.6.0",
"typescript": "^3.3.3",
"umi-library": "^1.1.1"
},
"license": "MIT",
"dependencies": {
"antd": "^3.20.7",
"lodash": "^4.17.11",
"moment": "^2.24.0",
"react-cropper": "^1.2.0"
}
}