forked from react-navigation/react-navigation
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 2.21 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
{
"description": "Routing and navigation for your React Native apps",
"private": true,
"workspaces": {
"packages": [
"packages/*",
"example"
]
},
"publishConfig": {
"access": "public"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/react-navigation/react-navigation.git"
},
"author": "Satyajit Sahoo <[email protected]> (https://github.com/satya164/), Michał Osadnik <[email protected]> (https://github.com/osdnk/)",
"scripts": {
"lint": "eslint \"**/*.{js,ts,tsx}\"",
"typecheck": "tsc --noEmit --composite false",
"test": "jest",
"clean": "lerna run clean",
"build": "lerna run prepack",
"publish": "lerna publish",
"release": "run-s build publish",
"example": "yarn workspace @react-navigation/example"
},
"engines": {
"yarn": "3.2.2",
"node": ">=18"
},
"packageManager": "[email protected]",
"devDependencies": {
"@commitlint/config-conventional": "^18.5.0",
"@evilmartians/lefthook": "^1.6.0",
"@lerna-lite/cli": "^3.5.1",
"@lerna-lite/publish": "^3.5.2",
"@lerna-lite/run": "^3.5.1",
"@react-native/babel-preset": "^0.74.84",
"check-dependency-version-consistency": "^4.1.0",
"commitlint": "^18.5.0",
"eslint": "^8.56.0",
"eslint-config-satya164": "^3.3.0",
"eslint-plugin-simple-import-sort": "^10.0.0",
"jest": "^29.7.0",
"npm-run-all2": "^6.2.2",
"prettier": "^3.2.4",
"typescript": "^5.5.2"
},
"jest": {
"testEnvironment": "node",
"testRegex": "/__tests__/.*\\.(test|spec)\\.(js|tsx?)$",
"setupFiles": [
"<rootDir>/jest/setup.js"
],
"transformIgnorePatterns": [
"node_modules/(?!(@react-native|react-native|react-native-reanimated)/)"
],
"moduleNameMapper": {
"@react-navigation/([^/]+)": "<rootDir>/packages/$1/src",
"react-native-tab-view": "<rootDir>/packages/react-native-tab-view/src",
"react-native-drawer-layout": "<rootDir>/packages/react-native-drawer-layout/src"
},
"prettierPath": null,
"preset": "react-native"
},
"prettier": {
"quoteProps": "consistent",
"tabWidth": 2,
"useTabs": false,
"singleQuote": true,
"trailingComma": "es5"
}
}