-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1.15 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
32
33
34
35
36
37
{
"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",
"comman-windows": "",
"all": "npm-run-all --parallel server client",
"comman-macOs-linux": "",
"watch": "npm run server & npm run 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"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vorbrodt/nasa-project.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/vorbrodt/nasa-project/issues"
},
"homepage": "https://github.com/vorbrodt/nasa-project#readme",
"devDependencies": {
"npm-run-all": "^4.1.5"
},
"dependencies": {
"axios": "^0.26.1",
"mongoose": "^6.2.5"
}
}