-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
78 lines (78 loc) · 2.13 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
{
"name": "@mobeye/react-native-form-fields",
"version": "1.4.0",
"description": "Optimized field components for react-native forms",
"main": "build/index.js",
"types": "build/index.d.ts",
"files": [
"/build"
],
"scripts": {
"build": "tsc",
"test": "jest",
"lint": "eslint --max-warnings 0 .",
"format": "prettier --write \"src/**/*.ts\" \"src/**/*.tsx\"",
"prepublishOnly": "npm run lint && npm run build",
"preversion": "npm run lint",
"postversion": "git push && git push --tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Mobeye/react-native-form.git"
},
"keywords": [
"react",
"react-native",
"form",
"field",
"fields"
],
"author": {
"name": "Mobeye",
"company": "Mobeye"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/Mobeye/react-native-form/issues"
},
"homepage": "https://github.com/Mobeye/react-native-form#readme",
"devDependencies": {
"@react-native-community/datetimepicker": "^6.5.0",
"@react-native-community/eslint-config": "^3.1.0",
"@types/ramda": "^0.28.15",
"@types/react-native": "^0.69.6",
"@typescript-eslint/eslint-plugin": "^5.38.1",
"@typescript-eslint/parser": "^5.38.1",
"eslint": "^8.24.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.31.8",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-native": "^4.0.0",
"jest": "^29.1.2",
"metro-react-native-babel-preset": "^0.70.3",
"prettier": "^2.7.1",
"typescript": "^4.8.4"
},
"dependencies": {
"moment": "^2.29.4",
"react-native-modal": "^13.0.1",
"ramda": "^0.28.0"
},
"peerDependencies": {
"@react-native-community/datetimepicker": ">= 4.0.0",
"react": ">= 17.0.0",
"react-native": ">= 0.65.0"
},
"prettier": {
"arrowParens": "always",
"tabWidth": 4,
"printWidth": 120,
"singleQuote": true,
"bracketSpacing": true,
"trailingComma": "es5"
}
}