forked from react-navigation/react-navigation
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.18 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 2.18 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
62
63
64
65
66
67
68
69
70
71
{
"description": "Routing and navigation for your React Native apps",
"private": true,
"workspaces": [
"packages/*",
"example"
],
"publishConfig": {
"access": "public"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/react-navigation/react-navigation.git"
},
"author": "Satyajit Sahoo <satyajit.happy@gmail.com> (https://github.com/satya164/), Michał Osadnik <micosa97@gmail.com> (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": {
"node": "^22.12.0"
},
"packageManager": "yarn@4.9.1",
"devDependencies": {
"@commitlint/config-conventional": "^19.8.0",
"@evilmartians/lefthook": "^1.11.12",
"@lerna-lite/cli": "^4.1.1",
"@lerna-lite/publish": "^4.1.1",
"@lerna-lite/run": "^4.1.1",
"@react-native/babel-preset": "^0.79.1",
"check-dependency-version-consistency": "^5.0.0",
"commitlint": "^19.8.0",
"eslint": "^9.26.0",
"eslint-config-satya164": "^5.0.3",
"eslint-plugin-simple-import-sort": "^12.1.1",
"jest": "^29.7.0",
"npm-run-all2": "^7.0.2",
"prettier": "^3.5.3",
"typescript": "^5.8.3"
},
"jest": {
"preset": "react-native",
"testRegex": "/__tests__/.*\\.(test|spec)\\.(js|tsx?)$",
"setupFilesAfterEnv": [
"<rootDir>/jest/setup.js"
],
"transformIgnorePatterns": [
"node_modules/(?!((jest-)?@react-native|react-native|react-native-reanimated|react-native-safe-area-context)/)"
],
"moduleNameMapper": {
"@react-navigation/([^/]+)": "<rootDir>/packages/$1/src",
"react-native-drawer-layout": "<rootDir>/packages/react-native-drawer-layout/src",
"react-native-tab-view": "<rootDir>/packages/react-native-tab-view/src"
},
"prettierPath": null
},
"prettier": {
"quoteProps": "as-needed",
"tabWidth": 2,
"useTabs": false,
"singleQuote": true,
"trailingComma": "es5"
}
}