-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
60 lines (60 loc) · 1.8 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
{
"name": "rhfa-react-native",
"version": "1.2.0",
"description": "Generate automatic forms following a schema for React Native",
"main": "dist/rhfa-react-native.js",
"keywords": [
"react",
"react-native",
"hooks",
"react-hook-form",
"form",
"validators",
"validation"
],
"author": "David González <braben@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/dgonz64/rhfa-react-native"
},
"devDependencies": {
"@babel/cli": "^7.17.6",
"@babel/core": "^7.17.9",
"@babel/plugin-proposal-class-properties": "^7.16.7",
"@babel/plugin-proposal-object-rest-spread": "^7.17.3",
"@babel/preset-env": "^7.16.11",
"@babel/preset-react": "^7.16.7",
"babel-loader": "^8.2.4",
"enzyme": "^3.11.0",
"@wojtekmaj/enzyme-adapter-react-17": "^0.6.7",
"jest": "^27.5.0",
"jsdoc-to-markdown": "^7.0.0",
"rimraf": "^3.0.2",
"webpack": "^5.72.0",
"webpack-cli": "^4.9.2"
},
"peerDependencies": {
"react": "^17.0.0",
"react-native": "^0.68.0",
"react-hook-form": "^7.0.0",
"@react-native-community/checkbox": "^0.5.0",
"@react-native-picker/picker": "^2.0.0",
"@react-native-community/slider": "^4.0.0"
},
"scripts": {
"clean": "rimraf dist && rimraf lib",
"start": "npm run clean && webpack --watch",
"build": "npm run clean && npm run build:commonjs && npm run build:umd && npm run build:umd:min",
"build:commonjs": "babel src --out-dir lib",
"build:umd": "webpack",
"build:umd:min": "NODE_ENV=production npm run build:umd",
"test:debug": "node --inspect-brk node_modules/.bin/jest --runInBand",
"test:short": "jest",
"test": "jest --verbose",
"prepublishOnly": "npm run build"
},
"dependencies": {
"react-hook-form-auto": "^1.0.0"
}
}