-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.48 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.48 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
{
"name": "@okta/okta-client-js",
"version": "0.6.0",
"private": true,
"packageManager": "yarn@1.22.19",
"engines": {
"node": ">=18"
},
"scripts": {
"build": "yarn build:sdks",
"build:sdks": "turbo run build --filter=./packages/* --log-order=grouped",
"lint": "turbo run --continue --log-order=grouped lint",
"lint:lockfile": "lockfile-lint --path yarn.lock --allowed-hosts registry.yarnpkg.com --validate-https",
"test:unit": "turbo run test:unit --filter=./packages/* --log-order=grouped",
"test:node": "turbo run test:node --filter=./packages/* --filter=!*platform --log-order=grouped"
},
"devDependencies": {
"@repo/eslint-config": "*",
"lockfile-lint": "^4.14.1",
"turbo": "2.x"
},
"resolutions": {
"**/jsdom": "^26.1.0"
},
"workspaces": {
"packages": [
"packages/*",
"docs",
"docs2",
"tooling/*",
"e2e/**/*"
],
"nohoist": [
"@repo/okta-client-js-docs/**",
"**/typedoc",
"**/expo",
"**/expo/**",
"**/expo-*",
"**/expo-*/**",
"**/@expo/**",
"**/@expo/**/**",
"**/react-native",
"**/react-native/**",
"**/@react-navigation/**",
"react-native-oidc/@okta/*",
"react-native-oidc/@okta/**"
]
},
"devEngines": {
"runtime": {
"name": "node",
"version": ">=22.13.1",
"onFail": "warn"
},
"packageManager": {
"name": "yarn",
"version": ">=1.19.0",
"onFail": "warn"
}
}
}