-
Notifications
You must be signed in to change notification settings - Fork 35
/
Copy pathpackage.json
36 lines (36 loc) · 942 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
{
"name": "mongo-crud",
"version": "1.0.0",
"description": "A CRUD api built with MongoDB",
"main": "index.js",
"scripts": {
"test": "docker-compose -f docker/docker-compose.test.yml up --build --abort-on-container-exit",
"production": "docker-compose -f docker/docker-compose.yml up -d",
"build": "docker-compose -f docker/docker-compose.yml build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/torchhound/mongo-crud.git"
},
"keywords": [
"mongodb",
"crud",
"express"
],
"author": "Joe Cieslik",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/torchhound/mongo-crud/issues"
},
"homepage": "https://github.com/torchhound/mongo-crud#readme",
"dependencies": {
"body-parser": "^1.18.3",
"express": "^4.16.4",
"mongodb": "^3.1.8"
},
"devDependencies": {
"mocha": "^5.2.0",
"supertest": "^3.3.0",
"tape": "^4.9.1"
}
}