-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 972 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
{
"author": "Michael Hueter <[email protected]>",
"version": "2.0.0",
"name": "docker-node-express-boilerplate",
"description": "Boilerplate Dockerized Express code to launch new RESTful APIs.",
"repository": {
"type": "git",
"url": "[email protected]:mhueter/docker-node-express-boilerplate.git"
},
"main": "app/app.js",
"scripts": {
"test": "jest"
},
"license": "MIT",
"dependencies": {
"bluebird": "3.7.2",
"dotenv": "8.2.0",
"express": "4.17.1",
"jsonschema": "1.2.5",
"mongoose": "5.9.4"
},
"devDependencies": {
"babel-eslint": "^10.1.0",
"babel-preset-es2017": "^6.24.1",
"eslint": "^6.8.0",
"jest": "^25.1.0",
"jest-environment-node": "^25.1.0",
"mongodb-memory-server": "^6.3.3",
"supertest": "^4.0.2"
},
"jest": {
"globalSetup": "./config/jest/setup.js",
"globalTeardown": "./config/jest/teardown.js",
"testEnvironment": "./config/jest/MongoEnvironment.js"
}
}