-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.74 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
{
"name": "ludis",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev:frontend": "next dev",
"dev:backend": "ts-node-esm app/backend/index.ts",
"dev": "concurrently \"npm run dev:frontend\" \"npm run dev:backend\"",
"build": "next build",
"start": "next start",
"lint": "next lint"
},
"dependencies": {
"@emotion/react": "^11.11.3",
"@emotion/styled": "^11.11.0",
"@mui/icons-material": "^5.15.14",
"@mui/material": "^5.15.6",
"@mui/x-date-pickers": "^7.7.0",
"@react-oauth/google": "^0.12.1",
"@supabase/auth-helpers-nextjs": "^0.9.0",
"@supabase/auth-ui-react": "^0.4.7",
"@supabase/auth-ui-shared": "^0.1.8",
"@supabase/supabase-js": "^2.39.3",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"axios": "^1.6.8",
"bootstrap": "^5.3.2",
"cors": "^2.8.5",
"dotenv": "^16.4.2",
"express": "^4.19.2",
"express-router": "^0.0.1",
"express-validator": "^7.0.1",
"jwt-decode": "^4.0.0",
"multer": "^1.4.5-lts.1",
"next": "14.1.0",
"react": "^18",
"react-bootstrap": "^2.10.0",
"react-dom": "^18",
"react-hook-form": "^7.51.4",
"react-query": "^3.39.3",
"react-router-dom": "^6.23.1",
"stream": "^0.0.2",
"uuid": "^9.0.1",
"validator": "^13.12.0"
},
"devDependencies": {
"@types/multer": "^1.4.11",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"@types/uuid": "^9.0.8",
"autoprefixer": "^10.0.1",
"concurrently": "^8.2.2",
"cross-env": "^7.0.3",
"daisyui": "^4.6.0",
"eslint": "^8",
"eslint-config-next": "14.1.0",
"postcss": "^8",
"tailwindcss": "^3.3.0",
"ts-node": "^10.9.2",
"typescript": "^5.4.5"
}
}