forked from react-navigation/react-navigation
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 2.28 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
{
"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.20.5",
"@commitlint/config-conventional": "^17.3.0",
"@evilmartians/lefthook": "^1.2.4",
"@lerna-lite/cli": "^1.13.0",
"@lerna-lite/run": "^1.13.0",
"@types/jest": "^29.2.4",
"babel-jest": "^29.3.1",
"check-dependency-version-consistency": "^3.0.3",
"commitlint": "^17.3.0",
"eslint": "^8.29.0",
"eslint-config-satya164": "^3.1.12",
"eslint-plugin-simple-import-sort": "^8.0.0",
"jest": "^29.3.1",
"metro-react-native-babel-preset": "^0.73.5",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.1",
"typescript": "^4.9.4"
},
"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-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"
},
"preset": "react-native"
},
"prettier": {
"quoteProps": "consistent",
"tabWidth": 2,
"useTabs": false,
"singleQuote": true,
"trailingComma": "es5"
}
}