-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.31 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.31 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
43
44
45
46
{
"name": "bridge",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"dev:emulators": "NEXT_PUBLIC_USE_EMULATORS=1 npm run dev",
"emulators": "firebase emulators:start",
"build": "next build && next export",
"start": "next start",
"lint": "next lint"
},
"dependencies": {
"@babel/preset-env": "^7.19.3",
"@emotion/react": "^11.10.4",
"@emotion/styled": "^11.10.4",
"@mui/material": "^5.10.8",
"@react-hook/size": "^2.1.2",
"firebase": "^9.11.0",
"next": "^12.3.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-error-boundary": "^3.1.4",
"reactfire": "^4.2.2",
"recharts": "2.1.12"
},
"devDependencies": {
"@next/eslint-plugin-next": "^12.3.1",
"@types/node": "18.8.3",
"@types/react": "^18.0.21",
"@types/react-dom": "18.0.6",
"@typescript-eslint/eslint-plugin": "^5.39.0",
"@typescript-eslint/parser": "^5.39.0",
"eslint": "^8.25.0",
"eslint-config-google": "^0.14.0",
"eslint-config-next": "12.3.1",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.31.9",
"eslint-plugin-react-hooks": "^4.6.0",
"meow": "^10.1.5",
"prettier": "^2.7.1",
"prettier-plugin-organize-imports": "^3.1.1",
"typescript": "^4.8.4"
}
}