-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
45 lines (45 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
{
"name": "myapp-monorepo",
"private": true,
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"db-generate": "cd packages/db && yarn db-generate",
"native": "cd apps/expo && yarn start",
"watch": "yarn workspaces foreach -pi run watch",
"web": "yarn build && cd apps/next && yarn dev",
"web:extract": "DISABLE_EXTRACTION=false yarn workspace next-app dev",
"web:prod": "yarn workspace next-app build",
"web:prod:serve": "yarn workspace next-app serve",
"postinstall": "yarn build",
"build": "yarn workspaces foreach --exclude next-app -pi run build",
"upgrade:tamagui": "manypkg upgrade tamagui && manypkg upgrade @tamagui && manypkg upgrade tamagui-loader"
},
"resolutions": {
"esbuild": "0.15.6",
"@types/react": "17.0.21",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-refresh": "^0.14.0",
"react-native-svg": "12.3.0",
"react-native-web": "0.18.6"
},
"dependencies": {
"@babel/runtime": "^7.20.6"
},
"devDependencies": {
"@manypkg/cli": "^0.19.1",
"@types/react": "^18.0.15",
"@types/react-native": "^0.70.8",
"@typescript-eslint/eslint-plugin": "^5.46.0",
"@typescript-eslint/parser": "^5.46.0",
"eslint": "^8.29.0",
"lerna-update-wizard": "^1.1.2",
"prettier": "^2.8.1",
"turbo": "^1.4.2",
"typescript": "^4.9.3"
},
"packageManager": "[email protected]"
}