-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 900 Bytes
/
Copy pathpackage.json
File metadata and controls
27 lines (27 loc) · 900 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
{
"name": "proxy",
"version": "1.0.0",
"description": "Example node proxy app",
"main": "index.js",
"scripts": {
"startone": "cd hello1 && npm start > /dev/null 2>&1 &",
"killone": "kill -9 `cat hello1.pid > /dev/null 2>&1` > /dev/null 2>&1 & rm -f hello1.pid > /dev/null 2>&1",
"starttwo": "cd hello2 && npm start > /dev/null 2>&1 &",
"killtwo": "kill -9 `cat hello2.pid > /dev/null 2>&1` > /dev/null 2>&1 & rm -f hello2.pid > /dev/null 2>&1",
"start": "npm run startone && npm run starttwo && node index.js",
"killall": "npm run killone && npm run killtwo"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com:wdolorito/nodeProxy.git"
},
"author": "William Dolorito",
"license": "UNLICENSED",
"dependencies": {
"express": "^4.18.2",
"express-http-proxy": "^2.0.0"
},
"devDependencies": {
"nodemon": "^3.0.1"
}
}