-
Notifications
You must be signed in to change notification settings - Fork 42
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·34 lines (34 loc) · 900 Bytes
/
package.json
File metadata and controls
executable file
·34 lines (34 loc) · 900 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
32
33
34
{
"author": "Michael Hueter <mthueter@gmail.com>",
"version": "2.0.0",
"name": "docker-node-express-boilerplate",
"description": "Boilerplate Dockerized Express code to launch new RESTful APIs.",
"repository": {
"type": "git",
"url": "git@github.com:mhueter/docker-node-express-boilerplate.git"
},
"main": "app/app.js",
"scripts": {
"test": "jest"
},
"license": "MIT",
"dependencies": {
"dotenv": "10.0.0",
"express": "4.17.2",
"jsonschema": "1.4.0",
"mongoose": "6.1.4"
},
"devDependencies": {
"babel-eslint": "^10.1.0",
"babel-preset-es2017": "^6.24.1",
"eslint": "^8.5.0",
"jest": "^27.4.5",
"jest-environment-node": "^27.4.4",
"mongodb-memory-server": "^8.1.0",
"supertest": "^6.1.6"
},
"jest": {
"globalSetup": "./config/jest/globalSetup.js",
"globalTeardown": "./config/jest/globalTeardown.js"
}
}