-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
95 lines (95 loc) · 3.36 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
{
"name": "root",
"private": true,
"workspaces": {
"packages": [
"modules/*",
"libraries/*",
"tools/packages/*",
"tools",
"features/*"
],
"nohoist": [
"**/react-native",
"**/react-native/**",
"**/@react-native-community/**",
"**/react-native-web",
"**/react-native-svg",
"**/react-native-reanimated",
"**/react-native-gesture-handler",
"**/react-native-animateable-text",
"**/@react-navigation/native",
"**/@react-navigation/native-stack",
"**/react-native-screens",
"**/react-native-safe-area-context",
"**/@react-native-async-storage/async-storage"
]
},
"engines": {
"yarn": ">=3"
},
"scripts": {
"prepare": "command -v husky && (echo 'running husky' && husky install) || (echo 'skipping husky' && true)",
"lint": "LINTER=true lerna run lint",
"lint:fix": "LINTER=true lerna run lint -- --fix",
"test": "lerna run test -- --passWithNoTests",
"test:integration": "lerna run test:integration",
"todo:reenable:test:integration": "lerna run todo:reenable:test:integration",
"coverage:merge": "lerna run coverage:merge",
"build": "lerna run build",
"format": "prettier --write \"**/*.{json,md,yaml}\" --log-level warn",
"format:check": "prettier --check \"**/*.{json,md,yaml}\" --log-level warn",
"cache:delete": "node ./tools/scripts/cache/delete",
"sync": "./tools/scripts/sync.js"
},
"devDependencies": {
"@babel/cli": "^7.21.0",
"@babel/core": "^7.21.0",
"@babel/eslint-parser": "^7.22.9",
"@babel/plugin-proposal-export-default-from": "^7.18.10",
"@babel/preset-env": "^7.20.2",
"@babel/preset-flow": "^7.18.6",
"@babel/preset-react": "^7.18.6",
"@exodus/basic-utils": "^2.5.2",
"@exodus/eslint-config": "^5.22.0",
"@exodus/eslint-plugin-ban-flow": "latest",
"@exodus/eslint-plugin-basic-utils": "latest",
"@exodus/eslint-plugin-hydra": "^1.16.0",
"@exodus/eslint-plugin-package": "^1.10.1",
"@exodus/eslint-plugin-require-extensions": "^0.1.3-exodus.2",
"@exodus/eslint-plugin-restricted-imports": "^1.1.1",
"@exodus/prettier": "^1.0.0",
"@exodus/test": "^1.0.0-rc.56",
"@nrwl/devkit": "^15.8.5",
"@nrwl/workspace": "^15.8.5",
"@types/debug": "^4.1.7",
"@types/inquirer": "^8.2.1",
"@types/jest": "^29.2.2",
"@typescript-eslint/eslint-plugin": "^5.49.0",
"@typescript-eslint/parser": "^5.49.0",
"conventional-changelog-conventionalcommits": "^5.0.0",
"eslint": "^8.44.0",
"eslint-import-resolver-typescript": "^3.5.3",
"eslint-plugin-react": "^7.32.1",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^8.0.1",
"istanbul-combine": "^0.3.0",
"jest": "^29.1.2",
"lerna": "^7.1.2",
"nx": "^15.8.5",
"prettier": "^3.2.4",
"ts-jest": "^29.0.3",
"typescript": "^4.7.3"
},
"resolutions": {
"grpc": "file:tools/packages/you-shall-not-pass",
"react-native/@react-native-community/cli": "npm:@exodus/[email protected]",
"react-native/@react-native-community/cli-platform-ios": "npm:@exodus/[email protected]",
"react-native/@react-native-community/cli-platform-android": "npm:@exodus/[email protected]"
},
"prettier": "@exodus/prettier",
"packageManager": "[email protected]",
"dependencies": {
"global": "^4.4.0"
}
}