-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
40 lines (40 loc) · 957 Bytes
/
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
{
"name": "plfx-stack",
"workspaces": [
"apps/*",
"packages/*"
],
"dependencies": {
"react": "18.2.0",
"react-dom": "18.2.0",
"react-native": "0.73.3",
"react-native-web": "~0.19.10"
},
"devDependencies": {
"@types/react": "^18.2.52",
"@types/react-native": "^0.73.0",
"eslint": "^8.56.0",
"patch-package": "^8.0.0",
"prettier": "^3.2.5",
"prettier-plugin-tailwindcss": "^0.5.11",
"turbo": "^1.12.2",
"typescript": "^5.3.3"
},
"scripts": {
"dev": "turbo dev",
"native": "turbo run dev --filter expo-app",
"web": "turbo run dev --filter next-app",
"web:sb": "pnpm run --dir=apps/next storybook",
"format": "prettier --write .",
"postinstall": "patch-package"
},
"resolutions": {
"react-native-reanimated": "3.6.2",
"@react-native/assets-registry": "^0.74.0"
},
"nohoist": [
"**/expo-router",
"**/expo-router/**"
],
"license": "MIT"
}