-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.87 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 1.87 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
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
{
"name": "flood-risk",
"description": "Aplicação pública destinada a identificar e alertar sobre potenciais áreas de risco de alagamentos por todo o território brasileiro.",
"version": "1.0.0",
"license": "MIT",
"private": true,
"contributors": [
{
"name": "Bruno Machado",
"email": "brunomdr46@gmail.com"
},
{
"name": "Rian Oliveira",
"email": "riandiasdeoliveira2001@gmail.com"
}
],
"scripts": {
"build": "next build",
"dev": "next dev",
"format": "prettier --write ./src/**/*.{ts,tsx}",
"lint": "next lint",
"start": "next start",
"test:e2e": "cypress open"
},
"dependencies": {
"@emotion/cache": "^11.11.0",
"@emotion/react": "^11.11.4",
"@emotion/styled": "^11.11.5",
"@mui/icons-material": "^5.16.0",
"@mui/material": "^5.16.0",
"@mui/material-nextjs": "^5.15.11",
"@react-google-maps/api": "^2.19.3",
"axios": "^1.7.2",
"clsx": "^2.1.1",
"formik": "^2.4.6",
"lodash": "^4.17.21",
"mobx": "^6.13.0",
"mobx-react-lite": "^4.0.7",
"next": "14.2.4",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-toastify": "^10.0.5",
"react-vlibras": "^2.3.4",
"sharp": "^0.33.4",
"tailwind-merge": "^2.3.0",
"tailwindcss-animate": "^1.0.7",
"yup": "^1.4.0"
},
"devDependencies": {
"@types/lodash": "^4.17.7",
"@types/node": "^20.14.9",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@typescript-eslint/eslint-plugin": "^7.15.0",
"cypress": "^13.13.2",
"eslint": "^8.57.0",
"eslint-config-next": "14.2.4",
"eslint-plugin-cypress": "^3.4.0",
"postcss": "^8.4.39",
"prettier": "^3.3.2",
"tailwindcss": "^3.4.4",
"typescript": "^5.5.3"
},
"keywords": [
"brazil",
"hackathon",
"javascript",
"nextjs",
"react",
"tailwindcss",
"typescript"
]
}