-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
51 lines (51 loc) · 1.42 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
{
"name": "cookied",
"description": "Cookied Monorepo",
"repository": "https://github.com/ashuvssut/cookied",
"author": "Team Cookied",
"private": true,
"workspaces": [
"apps/*",
"packages/*"
],
"devDependencies": {
"@faker-js/faker": "^8.0.2",
"@types/he": "^1.2.1",
"@types/lodash": "^4.14.195",
"@types/react": "^18.0.17",
"@types/react-native": "^0.69.5",
"eslint": "^8.21.0",
"turbo": "^1.4.2",
"typescript": "^4.7.4"
},
"scripts": {
"native": "yarn workspace native start",
"native:android": "yarn workspace native android",
"web": "yarn workspace web dev",
"ext": "yarn workspace ext dev",
"ext:zip": "yarn workspace ext zip",
"api": "yarn workspace api dev",
"apk": "cd ./apps/expo/android && ./gradlew assembleRelease",
"apk:install": "adb install ./apps/expo/android/app/build/outputs/apk/release/app-release.apk",
"reset-cache": "yarn workspace native reset-cache",
"gradle-clean": "yarn workspace native gradle-clean",
"db": "json-server --watch db.json --port 3004"
},
"resolutions": {
"metro": "0.76.0",
"metro-resolver": "0.76.0"
},
"nohoist": [
"**/expo-router",
"**/expo-router/**"
],
"packageManager": "yarn@3.4.1",
"dependencies": {
"@fontsource/poppins": "^5.0.8",
"absolutify": "^0.1.0",
"cheerio": "^1.0.0-rc.12",
"convex": "^1.3.1",
"he": "^1.2.0",
"jotai": "^2.4.2"
}
}