-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
87 lines (87 loc) · 2.26 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "hl7-telescoper-api-server",
"version": "5.1.4",
"description": "A server side application for the Amida HL7-Telescoper Project",
"author": "Perry Ogwuche <[email protected]>",
"main": "index.js",
"private": false,
"engines": {
"node": ">=8.10.0",
"npm": ">=5.6.0",
"yarn": ">=1.5.1"
},
"scripts": {
"start": "node index.js",
"start:debug": "cross-env DEBUG=hl7-telescoper-api-server:* yarn start",
"drop-database": "node tools/dropDatabase.js",
"lint": "esw *.js server config --color",
"lint:watch": "yarn lint -- --watch",
"precommit": "yarn test",
"pretest": "cross-env NODE_ENV=test yarn drop-database",
"test": "jest",
"test:watch": "yarn test --watch",
"test:coverage": "yarn test --coverage",
"report-coverage": "coveralls < ./coverage/lcov.info"
},
"repository": {
"type": "git",
"url": "[email protected]:amida-tech/hl7-telescoper-api-server.git"
},
"keywords": [
"express",
"node",
"node.js",
"mongodb",
"mongoose",
"es6",
"REST",
"API",
"boilerplate"
],
"dependencies": {
"@amida-tech/hl7-parser": "1.2.3",
"bcrypt": "5.1.1",
"bluebird": "3.7.2",
"body-parser": "1.20.2",
"compression": "1.7.4",
"cookie-parser": "1.4.6",
"cors": "2.8.5",
"debug": "^4.3.4",
"dotenv": "^16.3.1",
"express": "4.18.2",
"express-jwt": "8.4.1",
"express-validation": "4.1.0",
"express-winston": "4.2.0",
"helmet": "7.0.0",
"http-status": "1.7.3",
"jsonwebtoken": "9.0.2",
"method-override": "^3.0.0",
"mongoose": "7.6.3",
"morgan": "1.10.0",
"multer": "1.4.4-lts.1",
"passport": "0.6.0",
"passport-jwt": "4.0.1",
"winston": "3.11.0"
},
"devDependencies": {
"commitizen": "^4.3.0",
"coveralls": "^3.1.1",
"cross-env": "7.0.3",
"cz-conventional-changelog": "3.3.0",
"eslint": "8.52.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-plugin-import": "2.29.0",
"eslint-watch": "8.0.0",
"husky": "8.0.3",
"jest": "^29.7.0",
"supertest": "6.3.3",
"supertest-as-promised": "4.0.2",
"validate-commit-msg": "^2.14.0"
},
"license": "MIT",
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}