forked from jannikbuschke/formik-antd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.58 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
{
"name": "formik-antd",
"version": "2.0.0",
"author": "Jannik Buschke",
"description": "Dead simple declarative bindings for Formik and Ant Design.",
"displayName": "formik-antd",
"keywords": [
"react",
"formik",
"antd",
"ant",
"design",
"form"
],
"sideEffects": [
"es/**/style/*",
"lib/**/style/*"
],
"license": "MIT",
"private": false,
"files": [
"lib",
"src",
"es"
],
"module": "./es/index.js",
"main": "./lib/index.js",
"types": "./lib/types.d.ts",
"scripts": {
"build": "tsc && tsc -p tsconfig.es.json",
"tsc": "tsc && tsc -p tsconfig.es.json",
"watch": "tsc --watch -p tsconfig.es.json",
"cleanbuild": "rm -r node_modules && npm install && tsc",
"test": "jest",
"test:watch": "jest --watch",
"format": "prettier --write src/**/*.* package.json"
},
"dependencies": {},
"peerDependencies": {
"antd": ">= 3.12.1 < 5",
"formik": ">= 1.4.1 < 3",
"react": ">= 16.8.0 < 17",
"react-dom": ">= 16.8.0 < 17"
},
"devDependencies": {
"@testing-library/jest-dom": "5.8.0",
"@testing-library/react": "10.0.4",
"@types/jest": "25.2.3",
"@types/node": "14.0.5",
"@types/react": "16.9.35",
"@types/react-dom": "16.9.8",
"antd": "4.2.4",
"formik": "2.1.4",
"jest": "26.0.1",
"moment": "2.26.0",
"react": "16.13.1",
"react-dom": "16.13.1",
"ts-jest": "26.0.0",
"tslib": "2.0.0",
"typescript": "3.9.3",
"prettier": "2.0.5"
},
"repository": {
"type": "git",
"url": "https://github.com/jannikbuschke/formik-antd/"
}
}