-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
31 lines (31 loc) · 1.01 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
{
"name": "nasa-project",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"install-server": "npm install --prefix server",
"install-client": "npm install --prefix client",
"install": "concurrently \"cd server && npm install\" \"cd client && npm install\"",
"server": "npm start --prefix server",
"client": "npm start --prefix client",
"start": "concurrently \"cd server && npm start\" \"cd client && npm start\"",
"deploy": "npm run build --prefix client && npm start --prefix server",
"deploy-cluster": "npm run build --prefix client && npm run cluster --prefix server",
"test": "npm test --prefix server && npm test --prefix client"
},
"keywords": [],
"author": "Andrew Martinez",
"license": "ISC",
"description": "NASA mission launch simulator",
"devDependencies": {
"concurrently": "^8.2.2",
"jest": "^29.7.0"
},
"dependencies": {
"axios": "^1.7.2",
"mongodb": "^6.8.0",
"mongoose": "^8.4.5",
"morgan": "^1.10.0",
"pm2": "^5.4.2"
}
}