-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
44 lines (44 loc) · 1.1 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
{
"name": "react-native-ultimate-modal-picker",
"version": "1.1.0",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"description": "React Native Picker Component Library (Date, Time, DateTime, List, State)",
"repository": "https://github.com/jefelewis/react-native-ultimate-modal-picker",
"author": "Jeff Lewis",
"license": "MIT",
"keywords": [
"react-native",
"component-library",
"apple",
"ios",
"android",
"modal",
"picker",
"date",
"time",
"datetime",
"list",
"state"
],
"scripts": {
"build": "cd src && tsc && cp ../package.json && Echo Build completed!",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx"
},
"peerDependencies": {
"@react-native-community/datetimepicker": "*",
"@react-native-picker/picker": "*",
"react": "*",
"react-native": "*"
},
"dependencies": {
"react-native-modal": "^11.10.0"
},
"devDependencies": {
"@react-native-community/eslint-config": "^2.0.0",
"@types/react": "^17.0.8",
"@types/react-native": "^0.64.6",
"eslint": "^7.27.0",
"typescript": "^4.3.2"
}
}