This repository has been archived by the owner on Mar 23, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.63 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
{
"private": true,
"scripts": {
"dev": "next dev -p 3005",
"build": "prettier --check . && stylelint --allow-empty-input \"**/*.{css,scss}\" && next build",
"start": "next start",
"lint": "prettier --check . && stylelint --allow-empty-input \"**/*.{css,scss}\" && next lint",
"format": "prettier --write ."
},
"dependencies": {
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@mui/material": "^5.14.12",
"@react-google-maps/api": "^2.19.2",
"@reduxjs/toolkit": "^1.9.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"leaflet": "^1.9.4",
"leaflet-defaulticon-compatibility": "^0.1.2",
"leaflet-geometryutil": "^0.10.2",
"mongodb": "^4.8.1",
"mongoose": "^7.5.0",
"next": "latest",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-leaflet": "^4.2.1",
"react-redux": "^8.1.2",
"recharts": "^2.10.4",
"redux": "^4.2.1",
"redux-logger": "^3.0.6",
"redux-saga": "^1.2.3",
"redux-thunk": "^2.4.2",
"uplot": "^1.6.30",
"uplot-react": "^1.1.5"
},
"devDependencies": {
"@types/express": "^4.17.17",
"@types/leaflet": "^1.9.7",
"@types/node": "18.7.5",
"@types/react": "^18.2.37",
"@types/redux-logger": "^3.0.12",
"@typescript-eslint/eslint-plugin": "^6.10.0",
"@typescript-eslint/parser": "^6.10.0",
"eslint": "^8.53.0",
"eslint-config-next": "14.0.2",
"eslint-config-prettier": "^9.0.0",
"prettier": "^3.1.0",
"sass": "^1.69.5",
"stylelint": "^15.11.0",
"stylelint-config-prettier-scss": "^1.0.0",
"stylelint-config-standard-scss": "^11.1.0",
"typescript": "4.6.3"
}
}