-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 2.28 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 2.28 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
{
"private": true,
"scripts": {
"postinstall": "cd tests && npm install",
"db:start": "docker compose -f ../../.devcontainer/website/docker-compose.mongodb.yml up -d",
"db:stop": "docker compose -f ../../.devcontainer/website/docker-compose.mongodb.yml down",
"web:dev": "next dev -p 3005",
"web:dev:host": "next dev -p 3005 --hostname 0.0.0.0",
"web:dev:no-api": "cross-env DISABLE_API=true next dev -p 3005",
"web:dev:no-api:host": "cross-env DISABLE_API=true next dev -p 3005 --hostname 0.0.0.0",
"dev": "npm run db:start && npm run web:dev",
"dev:host": "npm run db:start && npm run web:dev:host",
"web:build": "next build",
"web:start": "next start -p 3005",
"web:start:host": "next start -p 3005 --hostname 0.0.0.0",
"simulation": "bash scripts/run-simulation.sh",
"lint": "prettier --check . && stylelint --allow-empty-input \"**/*.{css,scss}\" && next lint",
"format": "prettier --write ."
},
"dependencies": {
"@dnd-kit/core": "^6.1.0",
"@dnd-kit/modifiers": "^7.0.0",
"@dnd-kit/sortable": "^8.0.0",
"@reduxjs/toolkit": "^1.9.5",
"dotenv": "^16.3.1",
"exceljs": "^4.4.0",
"leaflet": "^1.9.4",
"leaflet-defaulticon-compatibility": "^0.1.2",
"leaflet-geometryutil": "^0.10.2",
"mongodb": "^4.17.2",
"mongoose": "^7.5.0",
"next": "^14.1.3",
"react": "^18.2.0",
"react-datepicker": "^8.7.0",
"react-dom": "^18.2.0",
"react-leaflet": "^4.2.1",
"react-redux": "^8.1.2",
"redux": "^4.2.1",
"redux-logger": "^3.0.6",
"redux-saga": "^1.2.3",
"uplot": "^1.6.30",
"uplot-react": "^1.1.5"
},
"devDependencies": {
"@svgr/webpack": "^8.1.0",
"@types/express": "^4.17.17",
"@types/leaflet": "^1.9.7",
"@types/node": "18.7.5",
"@types/react": "^18.3.11",
"@types/react-datepicker": "^7.0.0",
"@types/redux-logger": "^3.0.12",
"@typescript-eslint/eslint-plugin": "^6.10.0",
"@typescript-eslint/parser": "^6.10.0",
"cross-env": "^10.0.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": "^5.6.3"
}
}