-
-
Notifications
You must be signed in to change notification settings - Fork 70
/
package.json
127 lines (127 loc) · 3.88 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-arrays",
"version": "3.1.4",
"description": "A component for rendering and editing arrays 🏁 React Final Form",
"main": "dist/react-final-form-arrays.cjs.js",
"jsnext:main": "dist/react-final-form-arrays.es.js",
"module": "dist/react-final-form-arrays.es.js",
"typings": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"start": "nps",
"test": "nps test",
"precommit": "lint-staged && npm start validate"
},
"author": "Erik Rasmussen <[email protected]> (http://github.com/erikras)",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/final-form/react-final-form-arrays.git"
},
"bugs": {
"url": "https://github.com/final-form/react-final-form-arrays/issues"
},
"homepage": "https://github.com/final-form/react-final-form-arrays#readme",
"devDependencies": {
"@babel/core": "^7.19.3",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-decorators": "^7.19.3",
"@babel/plugin-proposal-export-namespace-from": "^7.18.9",
"@babel/plugin-proposal-function-sent": "^7.18.6",
"@babel/plugin-proposal-json-strings": "^7.18.6",
"@babel/plugin-proposal-numeric-separator": "^7.18.6",
"@babel/plugin-proposal-throw-expressions": "^7.18.6",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-syntax-import-meta": "^7.10.4",
"@babel/plugin-transform-flow-strip-types": "^7.19.0",
"@babel/plugin-transform-react-jsx-source": "^7.18.6",
"@babel/plugin-transform-runtime": "^7.19.1",
"@babel/preset-env": "^7.19.4",
"@babel/preset-flow": "^7.18.6",
"@babel/preset-react": "^7.18.6",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^11.1.0",
"@types/react": "^18.0.21",
"@typescript-eslint/eslint-plugin": "^5.40.1",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.1.0",
"babel-jest": "^29.2.1",
"bundlesize": "^0.18.1",
"doctoc": "^2.2.1",
"eslint": "^8.25.0",
"eslint-config-react-app": "^7.0.1",
"eslint-plugin-babel": "^5.3.1",
"eslint-plugin-flowtype": "^8.0.3",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-react": "^7.31.10",
"eslint-plugin-react-hooks": "^4.6.0",
"fast-check": "^3.2.0",
"final-form": "^4.20.7",
"final-form-arrays": "^3.0.2",
"flow-bin": "^0.190.0",
"glow": "^1.2.2",
"husky": "^8.0.1",
"jest": "^29.2.1",
"jest-environment-jsdom": "^29.2.1",
"jest-watch-typeahead": "^2.2.0",
"lint-staged": "^10.4.2",
"nps": "^5.10.0",
"nps-utils": "^1.7.0",
"prettier": "^2.7.1",
"prettier-eslint-cli": "^7.1.0",
"raf": "^3.4.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-final-form": "^6.5.9",
"rollup": "^3.2.3",
"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",
"typescript": "^4.8.4"
},
"peerDependencies": {
"final-form": "^4.15.0",
"final-form-arrays": ">=1.0.4",
"react": "^16.8.0 || ^17.0.0 || ^18.0.0",
"react-final-form": "^6.2.1"
},
"jest": {
"testEnvironment": "jsdom",
"watchPlugins": [
"jest-watch-typeahead/filename",
"jest-watch-typeahead/testname"
],
"testPathIgnorePatterns": [
".*\\.tsx?"
]
},
"lint-staged": {
"*.{js*,ts*,json,md,css}": [
"prettier --write",
"git add"
]
},
"bundlesize": [
{
"path": "dist/react-final-form-arrays.umd.min.js",
"threshold": "2kB"
},
{
"path": "dist/react-final-form-arrays.es.js",
"threshold": "3kB"
},
{
"path": "dist/react-final-form-arrays.cjs.js",
"threshold": "3kB"
}
],
"dependencies": {
"@babel/runtime": "^7.19.4"
}
}