-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
38 lines (38 loc) · 1.36 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
38
{
"name": "nasa-launch-schedule-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",
"client": "npm run start --prefix client",
"server": "npm run watch --prefix server",
"watch": "npm run client & npm run server",
"deploy": "npm run build --prefix client && npm start server --prefix server",
"deploy-cluster": "npm run build --prefix client && npm run cluster --prefix server",
"test": "npm run test --prefix server && npm run test --prefix client",
"format": "prettier --check --ignore-path .gitignore .",
"format:fix": "prettier --write --ignore-path .gitignore .",
"sync": "git status && git add . && git commit -m \"$npm_config_first\" && git push && git status"
},
"repository": {
"type": "git",
"url": "git+https://github.com/priti921/NASA-Launch-Schedule-Project.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/priti921/NASA-Launch-Schedule-Project/issues"
},
"homepage": "https://github.com/priti921/NASA-Launch-Schedule-Project#readme",
"dependencies": {
"pm2": "^5.2.2",
"prettier": "^2.8.4"
},
"devDependencies": {
"dotenv": "^16.0.3"
}
}