-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
111 lines (111 loc) · 2.88 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "root",
"version": "0.0.0",
"private": true,
"scripts": {
"example": "yarn workspace react-native-push-info-example",
"prepare": "yarn build",
"dev": "yarn build; yarn example start",
"dev:ios": "yarn build; yarn example ios",
"dev:android": "yarn build; yarn example android",
"test": "jest",
"test:ci": "jest -ci --coverage --reporters=default --reporters=jest-junit",
"typecheck": "tsc",
"lint": "eslint \"**/*.{js,ts,tsx}\"",
"clean": "yarn workspaces foreach run clean",
"build": "yarn workspace react-native-push-info build",
"watch": "yarn build --watch",
"changeset": "changeset",
"changeset:version": "changeset version",
"changeset:release": "yarn build && changeset publish"
},
"devDependencies": {
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.9",
"@evilmartians/lefthook": "^1.5.0",
"@react-native/eslint-config": "^0.73.1",
"@types/jest": "^29.5.5",
"@types/react": "^18.2.44",
"del-cli": "^5.1.0",
"eslint": "^8.51.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.1",
"jest": "^29.7.0",
"jest-junit": "^16.0.0",
"prettier": "^3.0.3",
"react": "18.3.1",
"react-native": "0.75.4",
"tshy": "^3.0.2",
"turbo": "^1.10.7",
"typescript": "^5.2.2"
},
"workspaces": [
"packages/*"
],
"packageManager": "yarn@3.6.1",
"jest": {
"projects": [
{
"displayName": "example",
"preset": "react-native",
"testMatch": [
"<rootDir>/packages/example/**/?(*.)+(spec|test).[jt]s?(x)"
]
},
{
"displayName": "react-native-push-info",
"preset": "react-native",
"testMatch": [
"<rootDir>/packages/react-native-push-info/**/?(*.)+(spec|test).[jt]s?(x)"
],
"modulePathIgnorePatterns": [
"<rootDir>/packages/react-native-push-info/dist/"
],
"moduleNameMapper": {
"^react-native$": "<rootDir>/node_modules/react-native",
"(.+)\\.js": "$1"
}
}
]
},
"eslintConfig": {
"root": true,
"extends": [
"@react-native",
"prettier"
],
"rules": {
"react/react-in-jsx-scope": "off",
"prettier/prettier": [
"error",
{
"quoteProps": "consistent",
"singleQuote": true,
"tabWidth": 2,
"trailingComma": "es5",
"useTabs": false
}
]
},
"parserOptions": {
"warnOnUnsupportedTypeScriptVersion": false
}
},
"eslintIgnore": [
"node_modules/",
"dist/",
"coverage/"
],
"prettier": {
"quoteProps": "consistent",
"singleQuote": true,
"tabWidth": 2,
"trailingComma": "es5",
"useTabs": false
},
"create-react-native-library": {
"type": "module-legacy",
"languages": "kotlin-swift",
"version": "0.41.2"
}
}