forked from react-navigation/react-navigation
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 2.19 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
{
"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 clean build publish",
"example": "yarn workspace @react-navigation/example"
},
"engines": {
"yarn": "3.2.2",
"node": ">=16"
},
"packageManager": "[email protected]",
"devDependencies": {
"@babel/core": "^7.18.6",
"@babel/generator": "^7.15.4",
"@commitlint/config-conventional": "^12.1.4",
"@evilmartians/lefthook": "^1.0.4",
"@types/jest": "^26.0.23",
"babel-jest": "^26.6.3",
"codecov": "^3.8.2",
"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",
"lerna": "^5.4.3",
"metro-react-native-babel-preset": "^0.66.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.3.0",
"typescript": "^4.7.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-navigation/([^/]+)": "<rootDir>/packages/$1/src"
},
"preset": "react-native"
},
"prettier": {
"quoteProps": "consistent",
"tabWidth": 2,
"useTabs": false,
"singleQuote": true,
"trailingComma": "es5"
}
}