-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 4.83 KB
/
package.json
File metadata and controls
93 lines (93 loc) · 4.83 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
{
"private": true,
"name": "ping-identity",
"version": "0.0.1",
"main": "index.js",
"license": "MIT",
"scripts": {
"packages:install": "yarn install",
"packages:build": "turbo run build",
"lint": "turbo run lint",
"test": "turbo run test --filter='./packages/*'",
"test:affected:coverage": "turbo run test --filter=\"{packages/**}[$TURBO_SCM_BASE...$TURBO_SCM_HEAD]\" -- --coverage",
"packages:info": "yarn workspaces info",
"docs:generate": "typedoc --options typedoc.json",
"packages:sample:build-install": "yarn packages:install && yarn packages:build && yarn sample:clean-install",
"test:browser": "yarn workspace @ping-identity/rn-browser test",
"test:journey": "yarn workspace @ping-identity/rn-journey test",
"test:oidc": "yarn workspace @ping-identity/rn-oidc test",
"test:logger": "yarn workspace @ping-identity/rn-logger test",
"test:storage": "yarn workspace @ping-identity/rn-storage run test",
"test:device-id": "yarn workspace @ping-identity/rn-device-id run test",
"test:fido": "yarn workspace @ping-identity/rn-fido run test",
"test:device-profile": "yarn workspace @ping-identity/rn-device-profile run test",
"test:push": "yarn workspace @ping-identity/rn-push test",
"sample:clean-install": "yarn workspace rn-sample-app run clean-install",
"sample:clean-android": "rm -rf PingSampleApp/android/app/build PingSampleApp/android/build PingSampleApp/android/.gradle && (rm -f ~/.gradle/wrapper/dists/gradle-8.14.1-bin/*/gradle-8.14.1-bin.zip.lck || true) && (cd PingSampleApp/android && ./gradlew clean)",
"sample:run:ios": "yarn workspace rn-sample-app run ios",
"sample:run:android": "yarn workspace rn-sample-app run android",
"sample:restart:metro": "yarn workspace rn-sample-app run reset-cache",
"nuke:metro": "bash -lc 'pkill -f \"react-native start|metro|cli.js start\" || true; lsof -ti:8081 | xargs kill -9 2>/dev/null || true; rm -rf /tmp/metro-* /tmp/haste-map-* \"$TMPDIR\"/metro-* \"$TMPDIR\"/haste-map-* 2>/dev/null || true'",
"test:runner": "yarn workspace rn-test-runner test",
"test:runner:all": "yarn workspace rn-test-runner test:all",
"test:runner:all:coverage": "yarn workspace rn-test-runner test:all:coverage",
"test:runner:integration": "yarn workspace rn-test-runner test:integration",
"test:runner:integration:coverage": "yarn workspace rn-test-runner test:integration:coverage",
"test:runner:native:android": "yarn workspace rn-test-runner test:native:android",
"test:runner:native:ios": "yarn workspace rn-test-runner test:native:ios",
"build:runner:e2e:ios": "yarn workspace rn-test-runner build:e2e:ios",
"build:runner:e2e:android": "yarn workspace rn-test-runner build:e2e:android",
"build:runner:bs:android": "yarn workspace rn-test-runner build:bs:android",
"build:runner:bs:ios": "yarn workspace rn-test-runner build:bs:ios",
"build:runner:bs:ios:archive": "yarn workspace rn-test-runner build:bs:ios:archive",
"build:runner:bs:ios:ipa": "yarn workspace rn-test-runner build:bs:ios:ipa",
"build:runner:bs:ios:test-suite": "yarn workspace rn-test-runner build:bs:ios:test-suite",
"test:runner:bs:android": "yarn workspace rn-test-runner test:bs:android",
"test:runner:e2e:ios": "yarn workspace rn-test-runner test:e2e:ios",
"test:runner:e2e:android": "yarn workspace rn-test-runner test:e2e:android",
"runner:clean-install": "yarn workspace rn-test-runner run clean-install",
"runner:run:ios": "yarn workspace rn-test-runner run ios",
"runner:run:android": "yarn workspace rn-test-runner run android",
"storage:test": "yarn workspace @ping-identity/rn-storage run test",
"docs:journey": "typedoc --options typedoc.journey.json",
"prettier": "turbo run prettier",
"typecheck": "turbo run typecheck",
"postinstall": "lefthook install",
"release:status": "changeset status",
"release:version": "changeset version",
"release:publish": "yarn packages:build && changeset publish --no-git-tag",
"release:check-lockstep": "node scripts/check-lockstep.mjs"
},
"workspaces": {
"packages": [
"packages/*",
"PingSampleApp",
"PingTestRunner"
]
},
"devDependencies": {
"@changesets/changelog-github": "^0.6.0",
"@changesets/cli": "^2.30.0",
"@eslint/compat": "^2.0.5",
"@eslint/js": "^10.0.1",
"@react-native/codegen": "^0.82.1",
"@react-native/eslint-config": "0.80.1",
"@types/jest": "^29.5.14",
"babel-jest": "^29.7.0",
"eslint": "^10.0.1",
"eslint-plugin-prettier": "^5.5.5",
"eslint-plugin-react-hooks": "^7.0.1",
"globals": "^17.3.0",
"jest": "^29.7.0",
"jest-junit": "^16.0.0",
"lefthook": "^2.1.5",
"prettier": "3.8.1",
"turbo": "^2.8.10",
"typedoc": "^0.28",
"typescript-eslint": "^8.56.0"
},
"engines": {
"node": ">=20"
},
"packageManager": "yarn@4.11.0"
}