-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
61 lines (61 loc) · 1.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
{
"name": "juniorjobs",
"type": "module",
"version": "1.2.0",
"author": {
"name": "Mahmoud Galal",
"email": "[email protected]"
},
"scripts": {
"dev": "astro dev",
"dev:phone": "astro dev --host",
"start": "astro dev",
"gen": "prisma generate --data-proxy --schema=./ORM/prisma/schema.prisma",
"build": "npx prisma generate --accelerate --schema=./ORM/prisma/schema.prisma && astro build",
"preview": "wrangler pages dev ./dist --compatibility-date=2023-01-27",
"astro": "astro"
},
"dependencies": {
"@astrojs/cloudflare": "^6.6.0",
"@astrojs/react": "^2.2.1",
"@astrojs/tailwind": "^4.0.0",
"@emotion/react": "^11.10.5",
"@emotion/styled": "^11.10.5",
"@hookform/resolvers": "^3.2.0",
"@mui/icons-material": "^5.11.0",
"@mui/material": "^5.11.6",
"@prisma/client": "^5.7.0",
"@prisma/extension-accelerate": "^0.6.2",
"@supabase/supabase-js": "^2.26.0",
"@types/react-dom": "^18.0.10",
"astro": "^2.10.7",
"class-variance-authority": "^0.7.0",
"clsx": "^2.0.0",
"cookie": "^0.5.0",
"dotenv": "^16.3.1",
"fuse.js": "^6.6.2",
"lucide": "^0.263.0",
"lucide-react": "^0.263.1",
"moment": "^2.29.4",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hook-form": "^7.45.4",
"react-toastify": "^9.1.1",
"tailwind-merge": "^1.14.0",
"tailwindcss": "^3.2.4",
"tailwindcss-animate": "^1.0.6",
"zod": "^3.21.4"
},
"devDependencies": {
"@types/cookie": "^0.5.1",
"@types/node": "^18.11.18",
"@types/react": "^18.0.27",
"@typescript-eslint/eslint-plugin": "^5.48.1",
"@typescript-eslint/parser": "^5.48.1",
"eslint": "^8.32.0",
"eslint-plugin-astro": "^0.21.1",
"prisma": "^5.0.0",
"sass": "^1.64.1",
"supabase": ">=1.8.1"
}
}