-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) Β· 918 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) Β· 918 Bytes
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
{
"name": "nasa-project",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"install-server": "npm install --prefix server",
"install-client": "npm install --prefix client",
"install": "npm run install-server && npm run install-client",
"server": "npm run watch --prefix server",
"client": "npm start --prefix client",
"watch": "concurrently 'npm:server' 'npm:client' ",
"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": "",
"license": "ISC",
"dependencies": {
"axios": "^1.4.0",
"concurrently": "^8.2.0",
"eslint-plugin-import": "^2.28.0",
"mongoose": "^7.4.2",
"morgan": "^1.10.0",
"react-scripts": "^5.0.1"
}
}