forked from zaguiini/formik-wizard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.17 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
{
"name": "formik-wizard",
"version": "3.1.3",
"main": "dist/index.js",
"description": "A multi-step form component powered by formik and react-albus",
"umd:main": "dist/formik-wizard.umd.production.js",
"module": "dist/formik-wizard.es.production.js",
"typings": "dist/index.d.ts",
"repository": "https://github.com/zaguiini/formik-wizard",
"author": "Luis Felipe Zaguini",
"license": "MIT",
"files": [
"dist"
],
"scripts": {
"start": "tsdx watch",
"prebuild": "rimraf dist/",
"build": "tsdx build",
"test": "tsdx test --env=jsdom",
"prepublish": "yarn build"
},
"peerDependencies": {
"formik": "^2.0.1-rc.12",
"react": "^16.8.6",
"react-albus": "^2.0.0",
"yup": "^0.27.0"
},
"devDependencies": {
"@types/jest": "^24.0.15",
"@types/react": "^16.8.23",
"@types/react-albus": "^2.0.5",
"@types/react-dom": "^16.8.5",
"@types/yup": "^0.26.22",
"formik": "^2.0.1-rc.12",
"prettier": "^1.18.2",
"react": "^16.8.6",
"react-albus": "^2.0.0",
"rimraf": "^2.6.3",
"tsdx": "^0.7.2",
"typescript": "^3.5.3",
"yup": "^0.27.0"
},
"dependencies": {
"immer": "^3.1.3"
}
}