-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpackage.json
43 lines (43 loc) · 971 Bytes
/
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
{
"name": "docker-nginx-express",
"version": "1.0.0",
"description": "A playground for Docker with Nginx and Express.",
"author": "Roberto Achar <[email protected]>",
"homepage": "https://github.com/robertoachar/docker-nginx-express#readme",
"keywords": [
"docker",
"docker-compose",
"node",
"express",
"nginx",
"load-balance",
"round-robin",
"live-reload"
],
"main": "src/index.js",
"files": [
"src"
],
"scripts": {
"lint": "eslint src/**/*.js",
"start": "nodemon src/index.js"
},
"repository": {
"type": "git",
"url": "https://github.com/robertoachar/docker-nginx-express.git"
},
"bugs": {
"url": "https://github.com/robertoachar/docker-nginx-express/issues"
},
"dependencies": {
"express": "4.16.2",
"pug": "2.0.0-rc.4",
"winston": "2.4.0"
},
"devDependencies": {
"eslint": "4.10.0",
"nodemon": "1.12.1"
},
"private": true,
"license": "MIT"
}