-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.56 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
{
"name": "formik-mobx",
"version": "1.0.0",
"description": "Formik Mobx Edition - Fully Reactive & Highly Performant",
"publishConfig": {
"access": "public"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"prepublish": "yarn run build",
"build": "tsc",
"build:check": "tsc --noEmit",
"test": "NODE_ENV=test jest",
"format": "prettier --write \"src/**/*.ts\" \"src/**/*.js\"",
"lint": "tslint -p tsconfig.json",
"travis": "yarn run jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com//gastonmorixe/formik-mobx.git"
},
"keywords": [
"formik",
"forms",
"react",
"hooks",
"react-hooks",
"render-props",
"react-native"
],
"author": "Gaston Morixe <[email protected]>",
"license": "MIT",
"devDependencies": {
"@types/jest": "^24.0.25",
"@types/lodash": "^4.14.149",
"@types/node": "^13.1.4",
"@types/react": "^16.9.17",
"@types/react-dom": "^16.9.4",
"@types/yup": "^0.26.27",
"jest": "^24.9.0",
"prettier": "^1.19.1",
"ts-jest": "^24.3.0",
"ts-node": "^8.5.4",
"tslint": "^5.20.1",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.7.4",
"yup": "^0.28.0"
},
"peerDependencies": {
"react": "experimental ||",
"react-dom": "experimental || >= 16.11.x"
},
"dependencies": {
"immutable": "^4.0.0-rc.12",
"lodash": "^4.17.15",
"mobx": "^5.15.1",
"mobx-react-lite": "^1.5.2",
"mobx-sync": "^2.1.2",
"mobx-utils": "^5.5.2"
}
}