-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.45 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
{
"name": "@lopatnov/express-reverse-proxy",
"email": "oleksandr@lopatnov.cv.ua",
"version": "1.3.0",
"description": "A back-end (Node.js) development tool to serve front-end projects with back-end reverse proxy for API. Configure a tool and serve your front-end projects",
"author": "lopatnov",
"main": "server.js",
"bin": {
"express-reverse-proxy": "./server.js"
},
"keywords": [
"reverse",
"proxy",
"javascript",
"express"
],
"scripts": {
"start": "node ./server.js",
"pm2-start": "pm2 start server.js --name express-reverse-proxy --instances 8 --wait-ready --time --listen-timeout 30000 --no-daemon --watch",
"pm2-stop": "pm2 stop express-reverse-proxy",
"pm2-status": "pm2 status",
"pm2-logs": "pm2 logs --lines 200",
"pm2-monitor": "pm2 monit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lopatnov/static-server-express.git"
},
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/lopatnov/static-server-express/issues"
},
"homepage": "https://lopatnov.github.io/express-reverse-proxy/",
"files": [
"**/*"
],
"publishConfig": {
"access": "public"
},
"dependencies": {
"express": "^4.18.1",
"express-http-proxy": "^1.6.3",
"morgan": "^1.10.0",
"path": "^0.12.7",
"pm2": "^5.2.0"
},
"devDependencies": {
"eslint": "^8.23.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.26.0"
}
}