-
-
Notifications
You must be signed in to change notification settings - Fork 481
/
package.json
127 lines (127 loc) · 3.59 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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
{
"name": "react-final-form",
"version": "6.5.9",
"description": "🏁 High performance subscription-based form state management for React",
"main": "dist/react-final-form.cjs.js",
"jsnext:main": "dist/react-final-form.es.js",
"module": "dist/react-final-form.es.js",
"typings": "typescript/index.d.ts",
"files": [
"dist",
"scripts",
"typescript"
],
"scripts": {
"start": "nps",
"test": "nps test",
"precommit": "lint-staged && npm start validate",
"build": "npm start build",
"prepublish": "npm start validate"
},
"author": "Erik Rasmussen <rasmussenerik@gmail.com> (http://github.com/erikras)",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/final-form/react-final-form.git"
},
"bugs": {
"url": "https://github.com/final-form/react-final-form/issues"
},
"homepage": "https://github.com/final-form/react-final-form#readme",
"devDependencies": {
"@babel/core": "^7.15.5",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-syntax-import-meta": "^7.10.4",
"@babel/plugin-transform-flow-strip-types": "^7.14.5",
"@babel/plugin-transform-react-jsx-source": "^7.14.5",
"@babel/plugin-transform-runtime": "^7.15.0",
"@babel/preset-env": "^7.15.6",
"@babel/preset-flow": "^7.14.5",
"@babel/preset-react": "^7.14.5",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^12.1.1",
"@types/react": "^17.0.24",
"@typescript-eslint/eslint-plugin": "^4.32.0",
"@typescript-eslint/parser": "^4.32.0",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.1.0",
"babel-jest": "^27.2.3",
"bundlesize": "^0.18.1",
"doctoc": "^2.0.1",
"dtslint": "^4.1.6",
"eslint": "^7.32.0",
"eslint-config-react-app": "^6.0.0",
"eslint-plugin-babel": "^5.3.1",
"eslint-plugin-flowtype": "^6.1.0",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.26.0",
"eslint-plugin-react-hooks": "^4.2.0",
"fast-deep-equal": "^3.1.3",
"final-form": "4.20.4",
"flow-bin": "^0.160.2",
"husky": "^4.3.0",
"jest": "^27.2.3",
"jest-mock-console": "^1.1.0",
"lint-staged": "^11.1.2",
"nps": "^5.10.0",
"nps-utils": "^1.7.0",
"opencollective": "^1.0.3",
"prettier": "^2.4.1",
"prettier-eslint-cli": "^5.0.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"rollup": "^2.57.0",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-replace": "^2.2.0",
"rollup-plugin-uglify": "^6.0.4",
"tar": "^6.1.11",
"ts-essentials": "^8.1.0",
"tslint": "^6.1.3",
"typescript": "^4.4.3"
},
"peerDependencies": {
"final-form": "^4.20.4",
"react": "^16.8.0 || ^17.0.0 || ^18.0.0"
},
"lint-staged": {
"*.{js*,ts*,json,md,css}": [
"prettier --write",
"git add"
]
},
"jest": {
"testEnvironment": "jsdom",
"testPathIgnorePatterns": [
".*\\.ts"
]
},
"bundlesize": [
{
"path": "dist/react-final-form.umd.min.js",
"threshold": "2kB"
},
{
"path": "dist/react-final-form.es.js",
"threshold": "3kB"
},
{
"path": "dist/react-final-form.cjs.js",
"threshold": "3kB"
}
],
"collective": {
"type": "opencollective",
"url": "https://opencollective.com/final-form"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/final-form"
},
"dependencies": {
"@babel/runtime": "^7.15.4"
}
}