-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.24 KB
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 1.24 KB
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
{
"name": "next-firebase-mui-starter",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev --turbo",
"build": "next build",
"start": "next start",
"lint": "next lint",
"update:models": "(yarn --cwd functions/models build) && (yarn upgrade models)",
"postinstall": "yarn update:models",
"emulate": "(yarn --cwd functions build -- --watch) | (firebase emulators:start --import=./test_data --export-on-exit)"
},
"dependencies": {
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@hookform/resolvers": "^3.3.2",
"@mui/icons-material": "^5.14.18",
"@mui/material": "^5.14.18",
"@sentry/nextjs": "^7.81.0",
"@svgr/webpack": "^8.1.0",
"firebase": "^10.6.0",
"firebase-admin": "^11.11.0",
"firebaseui": "^6.1.0",
"models": "file:functions/models",
"next": "^14.0.3",
"next-firebase-auth-edge": "^0.10.2",
"react": "^18",
"react-dom": "^18",
"react-hook-form": "^7.48.2",
"use-async-effect": "^2.2.7",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/node": "^20.9.3",
"@types/react": "^18.2.38",
"@types/react-dom": "^18.2.16",
"eslint": "^8.54.0",
"eslint-config-next": "^14.0.3",
"typescript": "^5.3.2"
}
}