forked from stackworx/formik-mui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
82 lines (82 loc) · 2.53 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
{
"name": "formik-mui-root",
"version": "0.0.0",
"repository": "[email protected]:stackworx/formik-mui.git",
"author": "Ciaran Liedeman <[email protected]>",
"license": "MIT",
"typings": "dist/main.d.ts",
"private": true,
"workspaces": [
"packages/*"
],
"prettier": {
"singleQuote": true,
"trailingComma": "es5"
},
"devDependencies": {
"@babel/core": "^7.15.5",
"@emotion/react": "^11.4.1",
"@emotion/styled": "^11.3.0",
"@jest/globals": "^27.2.0",
"@mui/icons-material": "^5.0.0",
"@mui/lab": "^5.0.0-alpha.47",
"@mui/material": "^5.0.0",
"@storybook/addon-actions": "^6.3.8",
"@storybook/addon-essentials": "^6.3.8",
"@storybook/addon-links": "^6.3.8",
"@storybook/addons": "^6.3.8",
"@storybook/components": "^6.3.8",
"@storybook/core-events": "^6.3.8",
"@storybook/react": "^6.3.8",
"@storybook/theming": "^6.3.8",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^12.1.0",
"@types/jest": "^27.0.1",
"@types/node": "^16.9.2",
"@types/prop-types": "^15.7.4",
"@types/react": "^17.0.21",
"@types/react-dom": "^17.0.9",
"@types/react-test-renderer": "^17.0.1",
"@types/yup": "^0.29.13",
"@typescript-eslint/eslint-plugin": "^4.31.1",
"@typescript-eslint/parser": "^4.31.1",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.2.2",
"coveralls": "^3.1.1",
"cross-env": "^7.0.3",
"date-fns": "^2.23.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-react-app": "^6.0.0",
"eslint-plugin-flowtype": "^5.10.0",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-jest": "^24.4.2",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.26.0",
"eslint-plugin-react-hooks": "^4.2.0",
"formik": "^2.2.9",
"jest": "^27.2.0",
"lerna": "^4.0.0",
"prettier": "^2.4.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-test-renderer": "^17.0.2",
"rimraf": "^3.0.2",
"rollup": "^2.56.3",
"rollup-plugin-typescript2": "^0.30.0",
"temp-dir": "^2.0.0",
"tiny-warning": "^1.0.3",
"ts-jest": "^27.0.5",
"ts-loader": "^9.2.5",
"tslib": "^2.3.1",
"typescript": "^4.4.3",
"yup": "^0.32.9"
},
"scripts": {
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"prettier": "prettier --write \"{packages,stories}/**/*.{js,tsx,ts}\"",
"prettier:list": "prettier --list-different \"{src,stories}/**/*.{js,tsx,ts}\""
}
}