-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.32 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.32 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
{
"name": "starlink-map",
"version": "1.0.0",
"private": true,
"scripts": {
"build-frontend": "next build src/",
"build-backend": "tsc --project tsconfig.json",
"start": "cross-env cross-env NEXT_PUBLIC_ENV=development NODE_ENV=development concurrently -p \"[{name}]\" -n \"Frontend,Backend\" -c \"bgBlue.bold,bgMagenta.bold\" \"next dev src/\" \"bun --watch app.ts\"",
"start-built-frontend": "next start src/"
},
"dependencies": {
"@types/cookie-parser": "^1.4.7",
"@types/lodash.debounce": "^4.0.9",
"axios": "^1.7.7",
"babel-plugin-react-compiler": "^19.1.0-rc.1",
"concurrently": "^9.0.1",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"express": "^5.1.0",
"lodash.debounce": "^4.0.8",
"mapbox-gl": "^3.11.1",
"maplibre-gl": "^5.4.0",
"next": "^15.3.1",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"react-map-gl": "^8.0.4",
"sass": "^1.79.4",
"satellite.js": "^6.0.0",
"socket.io": "^4.8.1",
"socket.io-client": "^4.8.1",
"tsx": "^4.19.1"
},
"devDependencies": {
"@types/cors": "^2.8.17",
"@types/express": "^5.0.1",
"@types/node": "^22.15.0",
"@types/react": "^19.1.2",
"@types/react-dom": "^19.1.2",
"nodemon": "^3.1.10",
"ts-node": "^10.9.2",
"typescript": "^5.8.3"
}
}