-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
46 lines (46 loc) · 1.32 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
{
"name": "react-native-turbo-demo",
"private": true,
"scripts": {
"postinstall": "yarn build && turbo postinstall",
"build": "turbo build",
"dev": "turbo dev",
"dev:ios": "turbo dev:ios",
"dev:android": "turbo dev:android",
"clean": "turbo clean && rm -rf node_modules",
"typescript": "turbo typescript",
"lint": "turbo lint",
"format": "prettier --write \"**/*.{ts,tsx,md}\""
},
"devDependencies": {
"@commitlint/cli": "^19.1.0",
"@commitlint/config-conventional": "^19.1.0",
"@release-it/bumper": "^6.0.1",
"@types/jest": "^29.5.12",
"@types/react": "^18.2.65",
"@types/react-native": "^0.73.0",
"@typescript-eslint/eslint-plugin": "^7.2.0",
"@typescript-eslint/parser": "^7.2.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-turbo": "^1.12.4",
"eslint-config-universe": "^12.0.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-only-error": "^1.0.2",
"eslint-plugin-prettier": "^5.1.3",
"husky": "^9.0.11",
"prettier": "^3.2.5",
"react-native-builder-bob": "^0.23.2",
"release-it": "^17.1.1",
"turbo": "^1.13.3",
"typescript": "^5.3.3"
},
"engines": {
"node": ">=18"
},
"packageManager": "[email protected]",
"workspaces": [
"examples/*",
"packages/*"
]
}