-
-
Notifications
You must be signed in to change notification settings - Fork 22
/
package.json
68 lines (68 loc) · 2.78 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
{
"name": "tamagui-monorepo",
"private": true,
"version": "0.0.13",
"license": "MIT",
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"native": "cd apps/expo && yarn start",
"web": "cd apps/next && yarn next",
"sb": "cd apps/sb-vite && yarn storybook",
"sb:native": "cd apps/storybook-react-native && yarn start",
"sb:next": "cd apps/storybook-react && yarn storybook",
"build:sb": "cd apps/sb-vite && yarn build-storybook",
"chromatic": "cd apps/storybook-react && yarn chromatic",
"web:prod": "turbo run build --filter=next-app && turbo run start --filter=next-app",
"pre:build": "turbo run build --filter=@tamagui-extras/core",
"build": "turbo run build --filter=app^...",
"clean": "turbo run clean --filter=app^... && yarn",
"watch": "turbo run watch --filter=app^...",
"postinstall": "yarn build",
"build:all": "yarn turbo run build --filter=...app",
"build:web": "yarn turbo run build --filter=next-app && yarn turbo run start --filter=next-app",
"upgrade:tamagui": "yarn up '*tamagui*' '@tamagui/*'",
"upgrade:rnw": "yarn up [email protected]",
"upgrade:solito": "yarn up solito",
"upgrade:next": "yarn up next eslint-config-next -E",
"upgrade:sb": "yarn up '@storybook/*' storybook -E",
"upgrade:ts": "yarn up typescript -E",
"eas:dev:ios": "cd apps/expo && yarn eas:dev:ios",
"doctor": "yarn turbo run doc",
"tests": "yarn build && cd apps/tests && yarn test",
"check-types": "yarn turbo run check-types",
"codegen": "yarn turbo run codegen",
"rm:nodemodule": "rm -rf .yarn/cache node_modules apps/sb-vite/node_modules apps/expo/node_modules apps/next/node_modules apps/next/.tamagui packages/core/node_modules yarn.lock apps/storybook-react/node_modules apps/storybook-react-native/node_modules apps/storybook-react/dist",
"new-version": "yarn build && yarn changeset",
"publish-packages": "changeset version && changeset publish && git push --tags",
"check-deps": "npx check-dependency-version-consistency .",
"check-deps:fix": "npx check-dependency-version-consistency . --fix",
"upgrade-latest": "yarn upgrade-interactive --latest"
},
"resolutions": {
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-refresh": "0.14.0",
"typescript": "5.3.3",
"esbuild": "~0.19.3",
"expo-asset": "~8.10.1",
"react-native-web": "^0.19.9",
"@react-navigation/native": "~6.1.9",
"@react-native-community/datetimepicker": "^7.2.0"
},
"dependencies": {
"@babel/runtime": "^7.18.9"
},
"devDependencies": {
"@changesets/cli": "2.26.1",
"@manypkg/cli": "0.20.0",
"@types/react": "~18.2.37",
"eslint": "^8.53.0",
"prettier": "^2.8.8",
"turbo": "1.11.3",
"typescript": "5.3.3"
},
"packageManager": "[email protected]"
}