-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 835 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 835 Bytes
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
{
"name": "expo-next-monorepo-example",
"private": true,
"license": "MIT",
"devDependencies": {
"@types/": "react-native-async-storage/async-storage",
"babel-plugin-transform-decorators-legacy": "1.3.5",
"patch-package": "^6.4.7"
},
"workspaces": [
"packages/app",
"packages/expo",
"packages/next"
],
"scripts": {
"dev:expo": "yarn workspace @expo-next-monorepo-example/expo dev",
"dev:next": "yarn workspace @expo-next-monorepo-example/next dev",
"build": "cd packages/next && yarn build",
"deploy": "vercel --prod --no-clipboard",
"postinstall": "patch-package"
},
"resolutions": {
"babel-preset-expo": "^8.5.1"
},
"dependencies": {
"axios": "0.24.0",
"dayjs": "1.10.7",
"mobx": "6.3.7",
"mobx-persist": "0.4.1",
"mobx-react": "7.2.1"
}
}