-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 2.1 KB
/
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "covital-backend-spike",
"version": "1.0.0",
"description": "PulseOx metrics collection backend spike",
"engines": {
"node": "~> 13.11.0",
"npm": ">= 6.13.7"
},
"main": "src/openapi-app.js",
"scripts": {
"test": "jest",
"lint": "eslint .",
"lint-fix": "eslint --fix .",
"start": "node --require @babel/register src/openapi-app.js",
"start-docker": "node --require @babel/register src/openapi-app.js dotenv_config_path=/app/conf/.env",
"build": "babel src --out-dir dist",
"ci-build": "npm run lint && npm run test && npm run build --if-present"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CoVital-Project/node-mongo-backend-spike.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/CoVital-Project/node-mongo-backend-spike/issues"
},
"homepage": "https://github.com/CoVital-Project/node-mongo-backend-spike#readme",
"dependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.0",
"@babel/plugin-transform-runtime": "^7.9.0",
"@babel/preset-env": "^7.9.0",
"@babel/register": "^7.9.0",
"@openapi-contrib/openapi-schema-to-json-schema": "^3.0.0",
"aws-sdk": "^2.648.0",
"babel-preset-es2015": "^6.24.1",
"bluebird": "^3.7.2",
"body-parser": "^1.19.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"json-schema-to-mongoose": "^0.2.2",
"migrate": "^1.6.2",
"mongo-sanitize": "^1.1.0",
"mongodb": "^3.5.5",
"mongoose": "^5.9.6",
"mongoose-paginate-v2": "^1.3.6",
"morgan": "^1.10.0",
"openapi-backend": "^2.3.8",
"swagger-mongoose": "^1.1.2",
"swagger-ui-express": "^4.1.4",
"uuid": "^7.0.3",
"winston": "^3.2.1"
},
"devDependencies": {
"@shelf/jest-mongodb": "^1.1.3",
"babel-eslint": "^10.1.0",
"babel-jest": "^25.1.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-jest": "^23.8.2",
"eslint-plugin-prettier": "^3.1.2",
"jest": "^25.1.0",
"jest-cli": "^25.1.0",
"mongo": "^0.1.0",
"openapi-enforcer": "^1.10.1",
"prettier-eslint": "^9.0.1"
}
}