-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 1.04 KB
/
package.json
File metadata and controls
34 lines (34 loc) · 1.04 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
{
"name": "vr-flight-tracker",
"version": "1.0.1",
"description": "Real-time airplane visualization in VR space",
"license": "MIT",
"workspaces": [
"client",
"server",
"shared"
],
"scripts": {
"dev": "concurrently \"npm run dev:server\" \"npm run dev:client\"",
"dev:server": "cd server && npm run dev",
"dev:client": "cd client && npm run dev",
"dashboard": "node dashboard-server.js",
"build": "npm run build --workspace=@vr-flight-tracker/shared && npm run build --workspace=@vr-flight-tracker/server",
"start": "npm run build && npm start --workspace=@vr-flight-tracker/server",
"install:all": "npm install && cd server && npm install && cd ../client && npm install",
"format": "prettier --write .",
"format:check": "prettier --check ."
},
"devDependencies": {
"concurrently": "^8.2.2",
"prettier": "^3.2.0",
"vite-plugin-cesium": "^1.2.23"
},
"dependencies": {
"@vr-flight-tracker/shared": "workspace:*",
"express": "^4.18.2"
},
"engines": {
"node": ">=18.0.0"
}
}