forked from react-native-datetimepicker/datetimepicker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
129 lines (129 loc) · 4.62 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
128
129
{
"name": "@react-native-community/datetimepicker",
"version": "8.2.0",
"description": "DateTimePicker component for React Native",
"main": "./src/index.js",
"types": "src/index.d.ts",
"files": [
"ios",
"android",
"src",
"jest",
"flow-typed",
"windows",
"RNDateTimePicker.podspec",
"!android/build",
"!ios/build",
"!**/__tests__",
"!**/__fixtures__",
"!**/__mocks__",
"plugin/build",
"app.plugin.js"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"start": "react-native start",
"start:android": "react-native run-android",
"start:ios": "react-native run-ios",
"start:windows": "react-native run-windows --sln example/windows/date-time-picker-example.sln",
"bundle:android": "mkdir -p example/dist && react-native bundle --platform android --dev false --entry-file index.js --bundle-output example/dist/main.android.jsbundle --assets-dest example/dist/res",
"bundle:ios": "mkdir -p example/dist && react-native bundle --platform ios --dev false --entry-file index.js --bundle-output example/dist/main.ios.jsbundle --assets-dest example/dist/assets",
"test": "jest",
"lint": "NODE_ENV=lint eslint {example,src,test}/**/*.js src/index.d.ts",
"flow": "flow check",
"detox:ios:build:debug": "detox build -c ios.sim.debug",
"detox:ios:test:debug": "SIMCTL_CHILD_TZ=Europe/Prague detox test -c ios.sim.debug -l verbose",
"detox:ios:build:release": "detox build -c ios.sim.release",
"detox:ios:test:release": "SIMCTL_CHILD_TZ=Europe/Prague detox test -c ios.sim.release --record-videos all --record-logs all -l verbose",
"detox:android:build:debug": "detox build -c android.emu.debug",
"detox:android:test:debug": "adb shell service call alarm 3 s16 Europe/Prague && detox test -c android.emu.debug -l verbose",
"detox:android:build:release": "detox build -c android.emu.release",
"detox:android:test:release": "adb shell service call alarm 3 s16 Europe/Prague && detox test -c android.emu.release --record-videos all --record-logs all --headless -l verbose",
"detox:clean": "rimraf example/android/build && rimraf example/android/app/build && rimraf example/android/.gradle && rimraf example/ios/build",
"plugin:build": "expo-module build plugin"
},
"repository": {
"type": "git",
"url": "git+https://github.com/react-native-community/datetimepicker.git"
},
"keywords": [
"react-native-component",
"react-native",
"ios",
"android",
"windows",
"datepicker",
"timepicker",
"datetime"
],
"author": "Martijn Swaagman <[email protected]> (https://github.com/swaagie)",
"contributors": [
"Daniel Sanudo Vacas <[email protected]> (https://github.com/DanielSanudo)",
"Vojtech Novak <[email protected]> (https://github.com/vonovak)",
"Pavel Balint <[email protected]> (https://github.com/lochness42)"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/react-native-community/datetimepicker/issues"
},
"homepage": "https://github.com/react-native-community/datetimepicker#readme",
"devDependencies": {
"@callstack/react-native-visionos": "^0.73.0",
"@react-native-segmented-control/segmented-control": "^2.5.2",
"@react-native/eslint-config": "^0.72.2",
"@react-native/metro-config": "^0.73.0",
"@rnx-kit/metro-config": "^1.3.15",
"@semantic-release/git": "^10.0.1",
"@testing-library/react-native": "9.1.0",
"babel-jest": "^29.5.0",
"detox": "^20.19.3",
"eslint": "^8.56.0",
"eslint-plugin-ft-flow": "^2.0.1",
"eslint-plugin-jest": "^28.6.0",
"eslint-plugin-prettier": "^4.2.1",
"expo": "^51.0.18",
"expo-module-scripts": "^3.5.2",
"flow-bin": "^0.217.0",
"flow-typed": "^3.9.0",
"jest": "^29.5.0",
"moment": "^2.24.0",
"moment-timezone": "^0.5.41",
"prettier": "^2.8.8",
"react": "18.2.0",
"react-native": "^0.73.0",
"react-native-localize": "^3.1.0",
"react-native-test-app": "^3.5.3",
"react-native-windows": "^0.73.0",
"react-test-renderer": "18.2.0",
"semantic-release": "^19.0.3",
"typescript": "^5.5.3"
},
"dependencies": {
"invariant": "^2.2.4"
},
"peerDependencies": {
"expo": ">=50.0.0",
"react": "*",
"react-native": "*",
"react-native-windows": "*"
},
"peerDependenciesMeta": {
"expo": {
"optional": true
},
"react-native-windows": {
"optional": true
}
},
"codegenConfig": {
"name": "RNDateTimePickerCGen",
"type": "all",
"jsSrcsDir": "src/specs",
"android": {
"javaPackageName": "com.reactcommunity.rndatetimepicker"
}
},
"packageManager": "[email protected]"
}