-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
67 lines (67 loc) · 2.42 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
{
"name": "pax-react-native-starter",
"version": "0.0.0",
"dependencies": {
"@babel/runtime": "^7.18.9",
"@commitlint/cli": "^17.4.2",
"@commitlint/config-conventional": "^17.4.2",
"@manypkg/cli": "^0.19.2",
"@types/react": "^18.0.15",
"@types/react-native": "^0.69.5",
"concurrently": "^7.6.0",
"dotenv-cli": "^7.0.0",
"eslint": "^8.21.0",
"husky": "^8.0.0",
"is-ci": "^3.0.1",
"lint-staged": "^13.1.0",
"prettier": "latest",
"semantic-release": "^20.1.0",
"semantic-release-monorepo": "^7.0.5",
"syncpack": "^8.5.14",
"turbo": "latest"
},
"engines": {
"node": ">=18.14.0",
"yarn": ">=3.2.3",
"npm": "please-use-yarn"
},
"packageManager": "[email protected]",
"private": true,
"resolutions": {
"esbuild": "0.17.5",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-native-web": "^0.18.12",
"react-refresh": "^0.14.0",
"typescript": "^4.9.4",
"webpack": "^5.74.0",
"react-native-svg": "13.4.0"
},
"scripts": {
"g:build": "turbo run build --concurrency=100% --since=HEAD^1",
"g:check:deps": "manypkg check",
"g:format": "turbo run format --parallel",
"g:format:check": "turbo run format:check --parallel --since=HEAD^1",
"g:format:deps": "syncpack format",
"g:lint": "turbo run lint --parallel --since=HEAD^1",
"g:lint:fix": "turbo run lint:fix --parallel --since=HEAD^1",
"g:rm:nodemodules": "rm -rf yarn.lock node_modules apps/*/node_modules packages/*/node_modules",
"g:run-all-checks": "turbo run typecheck lint format:check test build --parallel --since=HEAD^1",
"g:test": "turbo run test --filter=tests --parallel --since=HEAD^1",
"g:typecheck": "turbo run typecheck --parallel --since=HEAD^1",
"postinstall": "is-ci || yarn husky install",
"semantic-release:expo-app": "yarn workspace expo-app semantic-release",
"staged:format": "prettier --write",
"staged:lint:fix": "eslint --fix",
"start:sb": "yarn workspace storybook start",
"start:expo": "yarn workspace expo-app start",
"start:next": "yarn workspace next-app start",
"upgrade:next": "manypkg upgrade next && manypkg upgrade eslint-config-next",
"upgrade:rnw": "manypkg upgrade react-native-web",
"upgrade:tamagui": "manypkg upgrade tamagui && manypkg upgrade @tamagui && manypkg upgrade tamagui-loader && manypkg upgrade react-native-web-lite"
},
"workspaces": [
"apps/*",
"packages/*"
]
}