-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
61 lines (61 loc) · 1.69 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
{
"name": "quick-picker",
"version": "2.0.6",
"description": "A plug and Play picker for React Native",
"author": "Vincent de Lafontaine",
"private": false,
"scripts": {
"lint": "tslint --config tslint.json --project tsconfig.json",
"prettier": "prettier --write './src/**/*'",
"build": "tsc --jsx 'react' --skipLibCheck ./src/* --outDir './dist'"
},
"main": "dist/QuickPicker.js",
"repository": {
"type": "git",
"url": "/~https://github.com/Valiums/react-native-quickpicker.git"
},
"keywords": [
"react-native",
"appandflow",
"react-native picker",
"picker",
"quick picker"
],
"license": "MIT",
"files": [
"dist/QuickPicker.js",
"dist/QuickPicker.d.ts",
"dist/AndroidPicker.js",
"dist/AndroidPicker.d.ts",
"dist/IosPicker.js",
"dist/IosPicker.d.ts",
"dist/PickerStore.js",
"dist/PickerStore.d.ts"
],
"peerDependencies": {
"react": "*",
"react-native": "*",
"react-native-gesture-handler": "*"
},
"dependencies": {
"@appandflow/touchable": "2.0.0",
"@react-native-community/datetimepicker": "^3.0.4",
"react-native-gesture-handler": "~1.8.0"
},
"devDependencies": {
"@types/expo": "^33.0.1",
"@types/react": "~16.9.35",
"@types/react-native": "~0.63.37",
"babel-preset-expo": "8.3.0",
"eslint": "^6.8.0",
"eslint-plugin-import": "^2.20.0",
"eslint-plugin-react": "^7.18.0",
"eslint-plugin-react-hooks": "^2.3.0",
"expo": "^40.0.0",
"prettier": "^1.19.1",
"react": "16.13.1",
"react-native": "/~https://github.com/expo/react-native/archive/sdk-40.0.0.tar.gz",
"react-native-typescript-transformer": "^1.2.13",
"typescript": "~4.0.0"
}
}