forked from react-component/field-form
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 1.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
{
"name": "rc-field-form",
"version": "1.1.0",
"description": "React Form Component",
"engines": {
"node": ">=8.x"
},
"keywords": [
"react",
"react-component",
"react-form",
"form"
],
"homepage": "https://github.com/react-component/field-form",
"author": "[email protected]",
"repository": {
"type": "git",
"url": "https://github.com/react-component/field-form.git"
},
"bugs": {
"url": "https://github.com/react-component/field-form/issues"
},
"files": [
"lib",
"es",
"dist",
"assets/*.css"
],
"license": "MIT",
"main": "./lib/index",
"module": "./es/index",
"scripts": {
"start": "father doc dev --storybook",
"build": "father doc build --storybook",
"compile": "father build",
"prepublishOnly": "npm run compile && np --no-cleanup --yolo --no-publish",
"lint": "eslint src/ --ext .tsx,.ts",
"test": "father test",
"now-build": "npm run build"
},
"peerDependencies": {
"react": "*"
},
"devDependencies": {
"@types/lodash": "^4.14.135",
"@types/react": "^16.8.19",
"@types/react-dom": "^16.8.4",
"@types/warning": "^3.0.0",
"enzyme": "^3.1.0",
"enzyme-adapter-react-16": "^1.0.2",
"enzyme-to-json": "^3.1.4",
"father": "^2.13.6",
"np": "^5.0.3",
"react": "^v16.9.0-alpha.0",
"react-dnd": "^8.0.3",
"react-dnd-html5-backend": "^8.0.3",
"react-dom": "^v16.9.0-alpha.0",
"react-redux": "^4.4.10",
"react-router": "^3.0.0",
"redux": "^3.7.2",
"typescript": "^3.5.2"
},
"dependencies": {
"@babel/runtime": "^7.8.4",
"async-validator": "^3.0.3",
"rc-util": "^4.17.0",
"warning": "^4.0.3"
}
}