-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 831 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 831 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
28
29
30
31
{
"name": "docker-compose-blogpost",
"version": "1.0.0",
"description": "Example docker-compose app for Modus Create blog post",
"main": "index.js",
"scripts": {
"start": "./node_modules/.bin/nodemon ./index.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mschwartz/docker-compose-blogpost.git"
},
"keywords": [
"docker",
"docker-compose"
],
"author": "Mike Schwartz (mike@moduscreate.com)",
"license": "ISC",
"bugs": {
"url": "https://github.com/mschwartz/docker-compose-blogpost/issues"
},
"homepage": "https://github.com/mschwartz/docker-compose-blogpost#readme",
"dependencies": {
"express": "^4.16.2",
"mongodb": "^2.2.33"
},
"devDependencies": {
"nodemon": "^1.18.4"
}
}