-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.59 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
{
"name": "mono-repo",
"private": true,
"author": "serserm",
"license": "MIT",
"workspaces": [
"packages/*",
"examples/*"
],
"packageManager": "[email protected]",
"engines": {
"node": ">=18.0.0",
"yarn": ">=4.0.0"
},
"scripts": {
"lint": "eslint \"./packages/**/src/**/*.{js,jsx,ts,tsx}\"",
"typecheck": "tsc --noEmit --composite false",
"test": "jest",
"clean": "lerna run clean",
"build": "lerna run build --no-private",
"release": "lerna publish --no-private",
"example": "yarn workspace react-native-turbo-wifi-example",
"codegen": "yarn example codegen",
"start": "yarn example start",
"android": "yarn example android",
"ios": "yarn example ios"
},
"devDependencies": {
"@evilmartians/lefthook": "^1.6.8",
"@react-native/babel-preset": "^0.74.77",
"@react-native/eslint-config": "^0.74.77",
"@types/jest": "^29.5.12",
"@types/react": "^18.2.74",
"@types/react-native": "^0.72.8",
"@typescript-eslint/eslint-plugin": "^7.5.0",
"@typescript-eslint/parser": "^7.5.0",
"del-cli": "^5.1.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.34.1",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-native": "^4.1.0",
"jest": "^29.7.0",
"lerna": "^8.1.2",
"prettier": "^3.2.5",
"react": "18.2.0",
"react-native": "0.73.6",
"react-native-builder-bob": "^0.23.2",
"typescript": "5.4.4"
},
"resolutions": {
"@types/react": "^18.2.74"
}
}