This repository was archived by the owner on Sep 27, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
100 lines (100 loc) · 2.79 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "zabatly-app",
"description": "An online marketplace platform to gather users, event organizers and venue owners to effortlessly search, view and reserve venues.",
"private": false,
"keywords": [
"reactjs",
"html",
"css",
"typescript",
"website",
"tamagui",
"solito",
"clerk",
"universal",
"prisma",
"mysql",
"nextjs",
"react native",
"expo"
],
"contributors": [
{
"name": "Youssef Elmarakshy",
"url": "https://github.com/Carbowix"
},
{
"name": "Taha Hesham",
"url": "https://github.com/tahahesham"
},
{
"name": "Mohammed Effat",
"url": "https://github.com/bondo2boy"
},
{
"name": "Mostafa Awara",
"url": "https://github.com/mostafavic"
}
],
"repository": {
"type": "git",
"url": "https://github.com/Zabatly/website.git"
},
"bugs": {
"url": "https://github.com/Zabatly/website/issues"
},
"workspaces": [
"apps/*",
"packages/*"
],
"packageManager": "yarn@3.3.1",
"prisma": {
"schema": "./packages/db/prisma/schema.prisma"
},
"scripts": {
"dev": "turbo run dev",
"web": "TAMAGUI_TARGET=web turbo run dev --filter zabatly-next",
"native": "cd apps/expo && yarn dev",
"desktop": "turbo run dev:tauri --filter nextjs",
"build": "turbo build",
"clean": "rm -rf node_modules",
"clean:workspaces": "turbo clean ; rm -rf .yarn/cache .yarn/install-state.gz",
"db-push": "turbo db-push",
"postinstall": "yarn build:ui && yarn generate",
"generate": "cd packages/db && yarn prisma generate",
"build:ui": "cd packages/ui && yarn build",
"build-desktop": "turbo run build:tauri --filter nextjs",
"studio": " cd packages/db && yarn prisma:studio",
"upgrade:tamagui": "manypkg upgrade tamagui && manypkg upgrade @tamagui && manypkg upgrade tamagui-loader",
"check-deps": "npx check-dependency-version-consistency .",
"check-deps:fix": "npx check-dependency-version-consistency . --fix"
},
"resolutions": {
"esbuild": "0.17.17",
"@types/react": "^18.0.38",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-refresh": "^0.14.0",
"react-native-svg": "13.4.0",
"react-native-web": "~0.18.9",
"@react-native-community/datetimepicker": "6.5.2",
"react-native-modal-datetime-picker": "^15.0.1"
},
"dependencies": {
"@babel/runtime": "^7.18.9",
"dotenv": "^16.0.3",
"dotenv-cli": "^7.0.0"
},
"devDependencies": {
"@manypkg/cli": "^0.19.1",
"@types/react": "^18.0.38",
"@typescript-eslint/eslint-plugin": "latest",
"@typescript-eslint/parser": "latest",
"eslint": "^8.28.0",
"eslint-plugin-react": "latest",
"lerna-update-wizard": "^1.1.2",
"prettier": "^2.7.1",
"turbo": "^1.4.2",
"typescript": "^4.9.4"
}
}