forked from DCCS-IT-Business-Solutions/react-formik-mui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
108 lines (108 loc) · 2.83 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "@dccs/react-formik-mui",
"version": "0.4.0",
"description": "Simple Formik <-> MaterialUI wrappers",
"main": "lib/index.js",
"scripts": {
"watch": "tsc --watch",
"build": "npm-run-all -s lint transpile build-storybook",
"transpile": "tsc",
"lint": "tslint ./src/**/*.ts*",
"postinstall": "rimraf node_modules/@date-io/date-fns/type/index.d.ts",
"test": "jest --runInBand --coverage --passWithNoTests",
"storybook": "start-storybook -p 6006 -c .storybook",
"build-storybook": "build-storybook -o docs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DCCS-IT-Business-Solutions/react-formik-mui.git"
},
"keywords": [
"npm",
"node",
"react",
"table",
"sorting",
"filter",
"paging",
"javascript",
"typescript",
"materialUI",
"material-UI",
"material UI",
"materialUI",
"ui",
"wrapper",
"formik",
"easy to use",
"form",
"mui",
"formik-mui"
],
"author": "Manuel Vitzthum",
"license": "MIT",
"bugs": {
"url": "https://github.com/DCCS-IT-Business-Solutions/react-formik-mui/issues"
},
"homepage": "https://github.com/DCCS-IT-Business-Solutions/react-formik-mui#readme",
"peerDependencies": {
"@material-ui/pickers": "^3.1.2",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"@material-ui/core": "^4.3.1",
"@material-ui/icons": "^4.2.1",
"formik": "^1.5.8"
},
"devDependencies": {
"@date-io/date-fns": "^1.3.9",
"date-fns": "^2.0.0-beta.5",
"@babel/core": "^7.5.5",
"@material-ui/pickers": "^3.1.2",
"@storybook/addon-actions": "^5.1.10",
"@storybook/addon-links": "^5.1.10",
"@storybook/addons": "^5.1.10",
"@storybook/react": "^5.1.10",
"@types/jest": "^24.0.17",
"@types/react": "16.8.25",
"@types/react-dom": "16.8.5",
"@types/storybook__react": "^4.0.2",
"@types/styled-components": "^4.1.18",
"@material-ui/core": "4.3.1",
"@material-ui/icons": "4.2.1",
"formik": "^1.5.8",
"awesome-typescript-loader": "^5.2.1",
"babel-loader": "^8.0.6",
"enzyme": "^3.10.0",
"enzyme-adapter-react-16": "^1.14.0",
"jest": "^24.8.0",
"npm-run-all": "^4.1.5",
"react": "^16.8.6",
"react-docgen-typescript-loader": "^3.1.0",
"react-docgen-typescript-webpack-plugin": "^1.1.0",
"react-dom": "^16.8.6",
"tslint": "^5.18.0",
"tslint-config-prettier": "^1.18.0",
"tslint-react": "^4.0.0",
"typescript": "^3.5.3"
},
"jest": {
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"transform": {
"^.+\\.(ts|tsx)$": "<rootDir>/preprocessor.js"
},
"testMatch": [
"**/__tests__/**/*.ts?(x)",
"c**/?(*.)(spec|test).ts?(x)"
],
"setupFilesAfterEnv": [
"<rootDir>/setupTests.js"
]
},
"dependencies": {
"rimraf": "^3.0.0"
}
}