forked from stackworx/formik-mui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
104 lines (104 loc) · 2.87 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
{
"name": "fb-formik-material-ui",
"version": "1.0.0",
"typings": "dist/main.d.ts",
"peerDependencies": {
"@material-ui/core": ">=4.0.0",
"formik": ">=1.0.0",
"react": "^16.0.0-0"
},
"keywords": [
"react",
"formik",
"material-ui",
"form"
],
"prettier": {
"singleQuote": true,
"trailingComma": "es5"
},
"repository": {
"type": "git",
"url": "https://github.com/filoblu/formik-material-ui"
},
"jest": {
"testURL": "http://localhost/",
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"roots": [
"src"
],
"testRegex": "(/src/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
},
"devDependencies": {
"@babel/core": "^7.1.6",
"@material-ui/core": "^4.0.1",
"@storybook/addon-actions": "^5.0.11",
"@storybook/addon-links": "^5.0.11",
"@storybook/addons": "^5.0.11",
"@storybook/react": "^5.0.11",
"@types/jest": "^23.3.10",
"@types/prop-types": "^15.5.4",
"@types/react-test-renderer": "^16.0.3",
"@types/yup": "^0.26.2",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^23.4.2",
"babel-loader": "^8.0.4",
"coveralls": "^3.0.2",
"cross-env": "^5.2.0",
"formik": "^1.5.7",
"husky": "^1.2.0",
"jest": "^23.4.2",
"lerna": "^3.5.1",
"prettier": "^1.15.3",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-test-renderer": "^16.8.6",
"rimraf": "^2.6.2",
"rollup": "^0.67.3",
"rollup-plugin-typescript2": "^0.18.0",
"temp-dir": "^1.0.0",
"ts-jest": "^23.10.5",
"ts-loader": "^5.3.1",
"tslib": "^1.9.3",
"tslint": "^5.11.0",
"tslint-config-prettier": "^1.17.0",
"typescript": "^3.5.1",
"yup": "^0.26.0"
},
"files": [
"dist"
],
"husky": {
"hooks": {
"pre-commit": "yarn prettier && yarn lint:fix",
"pre-push": "yarn test -u"
}
},
"main": "dist/index.js",
"module": "dist/formik-material-ui.es6.js",
"scripts": {
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"build": "cross-env NODE_ENV=production tsc --noEmit --project tsconfig.json",
"package": "rimraf build dist && cross-env NODE_ENV=production tsc -p tsconfig.package.json && rollup -c && rimraf .rpt2_cache dist/.rpt2_cache",
"test": "jest",
"test:updateSnapshot": "jest --updateSnapshot",
"lint": "tslint --project tsconfig.json",
"lint:fix": "tslint --project tsconfig.json --fix",
"prettier": "prettier --write \"{src,stories}/**/*.{js,tsx,ts}\"",
"prettier:list": "prettier --list-different \"{src,stories}/**/*.{js,tsx,ts}\"",
"prepublishOnly": "yarn prettier && yarn test && yarn build && yarn package && yarn build-storybook",
"publish": "lerna publish"
},
"gitHead": "df7bf73bad4139831c2f0512244a85eb41a122f2"
}