-
-
Notifications
You must be signed in to change notification settings - Fork 24
/
package.json
58 lines (58 loc) · 1.38 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
{
"name": "@bottom-tabs/monorepo",
"private": true,
"workspaces": {
"packages": [
"packages/*",
"apps/*",
"docs"
]
},
"scripts": {
"lint": "turbo run lint",
"test": "turbo run test",
"typecheck": "turbo run typecheck",
"prepare": "turbo run prepare",
"release": "turbo run release",
"build:android": "turbo run build:android",
"build:android:fabric": "turbo run build:android:fabric",
"build:ios": "turbo run build:ios",
"build:ios-expo": "turbo run build:ios-expo",
"build:android-expo": "turbo run build:android-expo"
},
"resolutions": {
"@types/react": "^18.2.44"
},
"packageManager": "[email protected]",
"devDependencies": {
"@commitlint/config-conventional": "^17.0.2",
"commitlint": "^17.0.2",
"devmoji": "^2.3.0",
"eslint": "^8.51.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.1",
"jest": "^29.7.0",
"prettier": "^3.0.3",
"turbo": "^2.1.0",
"typescript": "^5.2.2"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"jest": {
"preset": "react-native",
"modulePathIgnorePatterns": [
"<rootDir>/example/node_modules",
"<rootDir>/lib/"
]
},
"prettier": {
"quoteProps": "consistent",
"singleQuote": true,
"tabWidth": 2,
"trailingComma": "es5",
"useTabs": false
}
}