This repository was archived by the owner on Apr 18, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 2.79 KB
/
package.json
File metadata and controls
91 lines (91 loc) · 2.79 KB
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
{
"name": "react-yup",
"version": "1.24.1",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"sideEffects": false,
"author": "Matthew Wong <mattywong94@gmail.com>",
"url": "https://github.com/mattywong/react-yup",
"repository": {
"type": "git",
"url": "https://github.com/mattywong/react-yup"
},
"license": "MIT",
"files": [
"dist"
],
"scripts": {
"prebuild": "rimraf ./dist",
"build": "webpack",
"postbuild": "yarn generate-types",
"start": "webpack-dev-server --mode development --config examples/webpack.config.js",
"pretypedoc": "rimraf ./docs",
"typedoc": "typedoc --out docs src",
"generate-types": "dts-bundle-generator -o dist/index.d.ts src/index.ts --no-banner --external-imports=yup",
"test": "jest"
},
"peerDependencies": {
"react": ">= 16",
"yup": "0.29.x"
},
"devDependencies": {
"@babel/core": "^7.10.2",
"@babel/plugin-transform-modules-commonjs": "^7.10.1",
"@babel/preset-env": "^7.10.2",
"@babel/preset-react": "^7.10.1",
"@babel/preset-typescript": "^7.10.1",
"@testing-library/dom": "^7.19.0",
"@testing-library/jest-dom": "^5.11.0",
"@testing-library/react": "^10.4.3",
"@testing-library/react-hooks": "^3.3.0",
"@types/jest": "^26.0.0",
"@types/lodash-es": "^4.17.3",
"@types/react": "^16.9.38",
"@types/react-bootstrap-typeahead": "3.4.6",
"@types/react-dom": "^16.9.8",
"@types/react-router-dom": "^5.1.5",
"@types/yup": "^0.29.4",
"@typescript-eslint/eslint-plugin": "^3.3.0",
"@typescript-eslint/parser": "^3.3.0",
"@welldone-software/why-did-you-render": "^4.2.5",
"babel-jest": "^26.1.0",
"babel-loader": "^8.1.0",
"css-loader": "^3.6.0",
"dts-bundle-generator": "^4.3.0",
"eslint": "^7.2.0",
"eslint-config-react-app": "^5.2.1",
"eslint-plugin-flowtype": "4.x",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsx-a11y": "6.x",
"eslint-plugin-react": "7.x",
"eslint-plugin-react-hooks": "2.x",
"fork-ts-checker-webpack-plugin": "^5.0.1",
"html-webpack-plugin": "^4.3.0",
"jest": "^26.1.0",
"react": "^16.13.1",
"react-bootstrap-typeahead": "3.4.7",
"react-dom": "^16.13.1",
"react-router-dom": "^5.2.0",
"react-test-renderer": "^16.13.1",
"rimraf": "^3.0.2",
"style-loader": "^1.2.1",
"terser-webpack-plugin": "^3.0.6",
"typedoc": "^0.17.7",
"typescript": "^3.9.5",
"webpack": "^4.43.0",
"webpack-bundle-analyzer": "^3.8.0",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.11.0",
"yup": "0.29.3"
},
"dependencies": {
"lodash-es": "^4.17.15"
},
"jest": {
"transformIgnorePatterns": [
"node_modules/(?!lodash-es|(?!deck.gl)|ng-dynamic)"
],
"collectCoverage": true,
"coverageDirectory": "./__coverage__"
}
}