-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 758 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 758 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
33
34
35
{
"name": "solito-with-tailwind",
"private": true,
"workspaces": [
"apps/*",
"packages/*",
"plugins/*"
],
"devDependencies": {
"@types/react": "^18.2.21",
"@types/react-native": "^0.72.2",
"eslint": "^8.21.0",
"eslint-plugin-unused-imports": "^3.0.0",
"prettier": "^3.0.3",
"prettier-plugin-tailwindcss": "^0.5.4",
"turbo": "^1.4.2",
"typescript": "^5.2.2"
},
"scripts": {
"native": "cd apps/expo && yarn start",
"web": "cd apps/next && yarn next"
},
"resolutions": {
"metro": "~0.76.7",
"metro-resolver": "~0.76.7"
},
"nohoist": [
"**/expo-router",
"**/expo-router/**"
],
"packageManager": "yarn@3.4.1",
"dependencies": {
"@reduxjs/toolkit": "^2.1.0"
}
}