forked from react-native-oh-library/react-navigation
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
81 lines (81 loc) · 2.35 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
{
"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}\"",
"typescript": "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": {
"@babel/core": "^7.20.5",
"@babel/generator": "^7.15.4",
"@commitlint/config-conventional": "^12.1.4",
"@evilmartians/lefthook": "^1.0.4",
"@lerna-lite/cli": "^1.12.0",
"@lerna-lite/run": "^1.12.0",
"@types/jest": "^26.0.23",
"babel-jest": "^26.6.3",
"check-dependency-version-consistency": "^3.0.3",
"commitlint": "^12.1.4",
"eslint": "^7.27.0",
"eslint-config-satya164": "^3.1.10",
"eslint-plugin-simple-import-sort": "^7.0.0",
"jest": "^26.6.3",
"metro-react-native-babel-preset": "^0.66.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.1",
"typescript": "^4.9.4"
},
"resolutions": {
"expo-modules-autolinking": "~0.10.1",
"@expo/config-plugins": "^5.0.0",
"@expo/prebuild-config": "^5.0.1"
},
"jest": {
"testEnvironment": "node",
"testRegex": "/__tests__/.*\\.(test|spec)\\.(js|tsx?)$",
"setupFiles": [
"<rootDir>/jest/setup.js"
],
"transformIgnorePatterns": [
"node_modules/(?!(@react-native|react-native|react-native-iphone-x-helper)/)"
],
"moduleNameMapper": {
"@react-native-oh-tpl/([^/]+)": "<rootDir>/packages/$1/src",
"@react-native-oh-tpl/react-native-tab-view": "<rootDir>/packages/react-native-tab-view/src"
},
"preset": "react-native"
},
"prettier": {
"quoteProps": "consistent",
"tabWidth": 2,
"useTabs": false,
"singleQuote": true,
"trailingComma": "es5"
}
}