-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.54 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.54 KB
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
53
{
"name": "echo-server",
"version": "1.0.0",
"description": "An echo http and ws server using nginx for SSL termination in prod deployed using docker",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"docker:build:prod": "docker build --build-arg nodeEnv=production -t zeusdeux/echo-server .",
"docker:build:dev": "docker build -t zeusdeux/echo-server .",
"docker:run:prod": "docker run -d -t --rm -p ${PORT}:8585 zeusdeux/echo-server",
"docker:run:dev": "docker run -it -p 8585:8585 zeusdeux/echo-server",
"dev": "npm run docker:build:dev && npm run docker:run:dev",
"start": "./bin/server.js"
},
"keywords": [
"websocket",
"secure",
"http",
"express",
"ws",
"docker",
"nginx"
],
"author": "Mudit Ameta <zeusdeux@gmail.com>",
"license": "ISC",
"dependencies": {
"body-parser": "^1.18.2",
"debug": "^3.1.0",
"express": "^4.16.3",
"morgan": "^1.9.0",
"ws": "^5.1.1"
},
"bin": {
"echo-server": "server.js"
},
"devDependencies": {
"eslint": "^4.19.1",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-import": "^2.11.0",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-promise": "^3.7.0",
"eslint-plugin-standard": "^3.1.0",
"prettier": "^1.12.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zeusdeux/echo-server.git"
},
"bugs": {
"url": "https://github.com/zeusdeux/echo-server/issues"
},
"homepage": "https://github.com/zeusdeux/echo-server#readme"
}