-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
127 lines (127 loc) · 4.11 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": "@meevilabs/react-native-elements",
"version": "0.1.7",
"description": "Meevi's RN Elements Library",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/meevilabs/react-native-elements.git"
},
"keywords": [
"meevi",
"react-native",
"react-native-elements"
],
"author": "Michael Amaral <mike@meevi.dev>",
"license": "MIT",
"bugs": {
"url": "https://github.com/meevilabs/react-native-elements/issues"
},
"homepage": "https://github.com/meevilabs/react-native-elements#readme",
"private": false,
"scripts": {
"clean": "rm -rf ./node_modules && yarn install",
"pretty": "prettier --config ./.prettierrc.js --write \"src/**/*.{js,jsx,ts,tsx,json}\"",
"lint": "tsc && eslint 'src/**/*.{js,ts,tsx}' --fix",
"test": "jest",
"build": "rm -rf dist && tsc",
"prepublish": "yarn build",
"postversion": "git push && git push --tags",
"version:patch": "npm version patch",
"version:minor": "npm version minor",
"version:major": "npm version major"
},
"lint-staged": {
"*.ts": [
"yarn pretty",
"yarn lint",
"git add ."
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"peerDependencies": {
"lottie-react-native": ">= 3.4",
"react": ">=16.13",
"react-native": ">=0.62",
"react-native-camera": ">=3.30",
"react-native-checkbox": ">=2.0.0",
"react-native-svg": ">=12.0.0",
"styled-components": ">=5"
},
"dependencies": {
"@platformbuilders/helpers": "^0.2.1",
"@types/react-native-actionsheet": "^2.4.1",
"formik": "^2.1.4",
"lodash": "^4.17.19",
"polished": "^3.6.5",
"react-native-actionsheet": "^2.4.2",
"react-native-datepicker": "^1.7.2",
"react-native-fast-image": "^8.1.5",
"react-native-haptic": "^1.0.1",
"react-native-image-picker": "^2.3.2",
"react-native-iphone-x-helper": "^1.2.1",
"react-native-masked-text": "^1.13.0",
"react-native-simple-dialogs": "^1.3.0",
"react-native-typography": "^1.4.1",
"react-native-vector-icons": "^7.0.0",
"react-spring": "^8.0.27",
"styled-components": "^5.1.1",
"tslib": "^2.0.0"
},
"devDependencies": {
"@babel/core": "^7.10.4",
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/runtime": "^7.10.4",
"@react-native-community/eslint-config": "^2.0.0",
"@types/jest": "^26.0.4",
"@types/lodash": "^4.14.157",
"@types/moment": "^2.13.0",
"@types/numeral": "^0.0.28",
"@types/react": "^16.9.43",
"@types/react-native": "^0.62.18",
"@types/react-native-check-box": "^2.1.1",
"@types/react-native-datepicker": "^1.7.0",
"@types/react-native-vector-icons": "^6.4.5",
"@types/styled-components": "^5.1.1",
"@types/yup": "^0.29.3",
"@typescript-eslint/eslint-plugin": "^3.6.0",
"@typescript-eslint/parser": "^3.6.0",
"babel-jest": "^26.1.0",
"babel-plugin-module-resolver": "^4.0.0",
"babel-preset-react-native": "^4.0.1",
"eslint": "^7.4.0",
"eslint-config-airbnb": "^18.2.0",
"eslint-config-airbnb-typescript": "^8.0.2",
"eslint-config-prettier": "^6.11.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-import-resolver-babel-module": "5.1.2",
"eslint-import-resolver-babel-plugin-root-import": "^1.1.1",
"eslint-import-resolver-typescript": "^2.0.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jest": "^23.18.0",
"eslint-plugin-json": "^2.1.1",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.20.3",
"eslint-plugin-react-hooks": "^4.0.7",
"eslint-plugin-react-native": "^3.8.1",
"eslint-plugin-sonarjs": "^0.5.0",
"husky": "^4.2.5",
"jest": "^26.1.0",
"jest-environment-node": "^26.1.0",
"lint-staged": "^10.2.11",
"lottie-react-native": "^3.4.0",
"react-native-camera": "^3.31.0",
"react-native-size-matters": "^0.3.0",
"react-native-svg": "^12.1.0",
"styled-components": "^5.1.1",
"ts-jest": "^26.1.2",
"typescript": "^3.9.6"
}
}