-
Notifications
You must be signed in to change notification settings - Fork 36
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.37 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.37 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
{
"name": "simple-react-form",
"version": "4.3.5",
"license": "MIT",
"author": "Nicolás López <nicolaslopezj@me.com>",
"description": "A library to make reusable form components in React and React Native",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"/lib"
],
"repository": {
"type": "git",
"url": "https://github.com/nicolaslopezj/simple-react-form"
},
"scripts": {
"test": "jest",
"prepare": "yarn run build",
"clean": "rm -rf ./lib",
"build": "yarn run clean && tsc",
"watch": "tsc -w"
},
"keywords": [
"react-component",
"react-native",
"ios",
"android",
"form",
"react"
],
"dependencies": {
"lodash": "4.17.21",
"use-deep-compare-effect": "^1.8.1"
},
"devDependencies": {
"@biomejs/biome": "^1.8.1",
"@testing-library/dom": "^10.1.0",
"@testing-library/jest-dom": "6.4.6",
"@testing-library/react": "^16.0.0",
"@types/jest": "29.5.12",
"@types/lodash": "^4.17.5",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"jest": "29.7.0",
"jest-environment-jsdom": "^29.7.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-test-renderer": "^18.3.1",
"ts-jest": "29.1.5",
"tslib": "^2.6.3",
"typescript": "^5.4.5"
},
"peerDependencies": {
"react": ">=17.0.0"
},
"packageManager": "yarn@1.22.19"
}