-
Notifications
You must be signed in to change notification settings - Fork 80
/
package.json
67 lines (67 loc) · 1.57 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.5",
"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",
"react-dom": ">= 16.8.0"
},
"devDependencies": {
"antd": "4.9.2",
"formik": "2.2.6",
"react": "17.0.1",
"react-dom": "17.0.1",
"tslib": "2.0.3",
"@testing-library/jest-dom": "5.11.6",
"@testing-library/react": "11.2.2",
"@types/jest": "26.0.19",
"@types/node": "14.14.13",
"@types/react": "17.0.0",
"@types/react-dom": "17.0.0",
"jest": "26.6.3",
"moment": "2.29.1",
"ts-jest": "26.4.4",
"typescript": "4.1.3",
"prettier": "2.2.1"
},
"repository": {
"type": "git",
"url": "https://github.com/jannikbuschke/formik-antd/"
}
}