-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 2.37 KB
/
Copy pathpackage.json
File metadata and controls
57 lines (57 loc) · 2.37 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
{
"name": "reactnative-oidc",
"version": "1.0.0",
"private": true,
"scripts": {
"android": "react-native run-android",
"ios": "react-native run-ios",
"lint": "ESLINT_USE_FLAT_CONFIG=false eslint \"src/**/*.{js,jsx,ts,tsx}\" \"ui/**/*.{js,jsx,ts,tsx}\" \"__tests__/**/*.{js,jsx,ts,tsx}\" \"*.{js,jsx,ts,tsx}\"",
"start": "react-native start",
"clean-install": "cd android && rm -rf .gradle app/build && cd .. && cd ios && rm -rf Pods build && cd .. && rm -rf build && bundle config set path 'vendor/bundle' && bundle install && bundle exec pod install --repo-update --project-directory=ios",
"codegen": "npx react-native codegen",
"reset-cache": "react-native start --reset-cache",
"prettier": "prettier --check App.tsx index.js babel.config.js jest.config.js metro.config.js package.json app.json tsconfig.json README.md \"__tests__/**/*.{js,jsx,ts,tsx}\" \"src/**/*.{js,jsx,ts,tsx,json}\" \"ui/**/*.{js,jsx,ts,tsx,json}\"",
"typecheck": "tsc --noEmit -p tsconfig.json",
"test": "jest"
},
"dependencies": {
"@ping-identity/rn-browser": "^1.0.0",
"@ping-identity/rn-core": "^1.0.0",
"@ping-identity/rn-logger": "^1.0.0",
"@ping-identity/rn-oidc": "^1.0.0",
"@ping-identity/rn-storage": "^1.0.0",
"@ping-identity/rn-types": "^1.0.0",
"@react-native/new-app-screen": "0.80.1",
"@react-navigation/native": "7.1.20",
"@react-navigation/native-stack": "7.6.3",
"react": "19.1.0",
"react-native": "0.80.1",
"react-native-config": "^1.5.9",
"react-native-safe-area-context": "5.6.2",
"react-native-screens": "4.18.0",
"react-native-vector-icons": "^10.3.0"
},
"devDependencies": {
"@babel/core": "^7.25.2",
"@babel/preset-env": "^7.25.3",
"@babel/runtime": "^7.25.0",
"@react-native-community/cli": "19.1.2",
"@react-native-community/cli-platform-android": "19.1.2",
"@react-native-community/cli-platform-ios": "19.1.2",
"@react-native/babel-preset": "0.80.1",
"@react-native/eslint-config": "0.80.1",
"@react-native/metro-config": "0.80.1",
"@react-native/typescript-config": "0.80.1",
"@testing-library/react-native": "^13.3.3",
"@types/jest": "^29.5.14",
"@types/react": "^19.1.0",
"eslint": "^8.19.0",
"jest": "^29.7.0",
"prettier": "3.8.1",
"react-test-renderer": "19.1.0",
"typescript": "5.0.4"
},
"engines": {
"node": ">=18"
}
}