forked from react-native-datetimepicker/datetimepicker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
137 lines (137 loc) · 5.12 KB
/
package.json
File metadata and controls
137 lines (137 loc) · 5.12 KB
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
130
131
132
133
134
135
136
137
{
"name": "@react-native-community/datetimepicker",
"version": "8.5.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",
"provenance": true
},
"scripts": {
"start": "patch-package && 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": "ORG_GRADLE_PROJECT_newArchEnabled=false 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": "ORG_GRADLE_PROJECT_newArchEnabled=false 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",
"generateManifest": "node node_modules/react-native-test-app/android/android-manifest.js example/app.json example/android/app/build/generated/rnta/src/main/AndroidManifest.xml"
},
"repository": "https://github.com/react-native-datetimepicker/datetimepicker",
"keywords": [
"react-native-component",
"react-native",
"ios",
"android",
"windows",
"datepicker",
"timepicker",
"datetime"
],
"author": "Martijn Swaagman <mswaagman@godaddy.com> (https://github.com/swaagie)",
"contributors": [
"Daniel Sanudo Vacas <dsanudovacas@godaddy.com> (https://github.com/DanielSanudo)",
"Vojtech Novak <vonovak@gmail.com> (https://github.com/vonovak)",
"Pavel Balint <lochness42@gmail.com> (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": {
"@babel/core": "^7.28.0",
"@callstack/react-native-visionos": "^0.78.0",
"@react-native-segmented-control/segmented-control": "2.5.7",
"@react-native/eslint-config": "^0.75.4",
"@react-native/metro-config": "^0.79.5",
"@rnx-kit/metro-config": "^2.1.0",
"@semantic-release/git": "^10.0.1",
"@testing-library/react-native": "^13.2.2",
"babel-jest": "^30.0.5",
"detox": "^20.28.0",
"eslint": "^8.56.0",
"eslint-plugin-ft-flow": "^3.0.11",
"eslint-plugin-jest": "^28.6.0",
"eslint-plugin-prettier": "^4.2.1",
"expo": "^53.0.20",
"expo-module-scripts": "^3.5.2",
"flow-bin": "^0.278.0",
"flow-typed": "^4.1.1",
"hermes-eslint": "^0.31.0",
"jest": "^29.5.0",
"moment": "^2.24.0",
"moment-timezone": "^0.5.41",
"patch-package": "^8.0.0",
"postinstall-postinstall": "^2.1.0",
"prettier": "^2.8.8",
"react": "19.0.0",
"react-native": "0.79.5",
"react-native-localize": "^3.5.1",
"react-native-test-app": "^4.4.5",
"react-native-windows": "^0.79.3",
"react-test-renderer": "19.0.0",
"semantic-release": "^19.0.3",
"typescript": "~5.8.3"
},
"dependencies": {
"invariant": "^2.2.4"
},
"peerDependencies": {
"expo": ">=52.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"
},
"ios": {
"componentProvider": {
"RNDateTimePicker": "RNDateTimePickerComponentView"
}
}
},
"packageManager": "yarn@4.9.2"
}