-
Notifications
You must be signed in to change notification settings - Fork 54
/
package.json
120 lines (120 loc) · 3.23 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
{
"name": "etl_rest_server",
"version": "2.4.0-SNAPSHOT",
"description": "etl rest server",
"main": "etl-server.js",
"scripts": {
"start": "babel-node etl-server.js",
"test": "jest --config=jest.config.js",
"test:watch": "jest --config=jest.config.js --watchAll=true",
"coverage": "jest --coverage --watchAll=false",
"watch": "npm-watch",
"prettier:check": "prettier --check .",
"prettier:write": "prettier --write ."
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,css,md,json}": [
"prettier --write",
"prettier --check"
]
},
"pre-commit": "npm test",
"author": "AMPATH DEVS",
"license": "ISC",
"dependencies": {
"@slack/client": "^4.8.0",
"@types/jest": "^26.0.22",
"ampath-json-query-gen": "github:AMPATH/ampath-json-query-gen.git#v1.0.0-alpha11",
"ampath-json2sql": "github:AMPATH/ampath-json2sql.git#v1.0.12",
"array-merge-by-key": "1.0.1",
"async": "^2.6.1",
"bcryptjs": "^2.4.3",
"bluebird": "^3.4.0",
"body-parser": "^1.15.1",
"boom": "^7.3.0",
"cluster": "^0.7.7",
"cookie-parser": "^1.4.2",
"cron": "^1.3.0",
"curlrequest": "^0.5.7",
"datatable": "^2.0.1",
"datatables": "^1.10.7",
"date-format": "^1.0.0",
"define-property": "^2.0.2",
"elastic.js": "^1.2.0",
"elasticsearch": "^15.2.0",
"express": "^4.13.4",
"fast-csv": "^4.3.2",
"fs": "0.0.2",
"good": "^6.1.0",
"good-console": "^5.0.0",
"hapi": "^16.0.0",
"hapi-auth-basic": "^2.0.0",
"hapi-authorization": "^3.0.2",
"hapi-cors-headers": "^1.0.0",
"hapi-routes": "^3.0.0",
"hapi-swagger": "^4.2.1",
"hoek": "^4.0.2",
"https": "^1.0.0",
"i": "^0.3.6",
"inert": "^3.2.0",
"is-data-descriptor": "^1.0.0",
"is-reachable": "^1.3.0",
"isobject": "^3.0.1",
"joi": "^9.0.0",
"jquery": "^3.5.0",
"jshint": "^2.8.0",
"lodash": "^4.17.20",
"math": "0.0.3",
"memory-cache": "^0.1.6",
"moment": "^2.13.0",
"multer": "^1.1.0",
"mysql": "^2.15.0",
"nes": "^6.2.5",
"ngx-select-ex": "^3.5.4",
"nigel": "^3.0.1",
"node-cache": "^4.2.0",
"node-cron": "^2.0.3",
"nodemailer": "^4.4.0",
"promise-mysql": "^3.2.1",
"redis": "^2.8.0",
"request": "^2.65.0",
"request-promise": "^3.0.0",
"squel": "5.12.0",
"telnet-client": "^0.10.6",
"to-snake-case": "^1.0.0",
"underscore": "^1.8.3",
"underscore.string": "^3.3.5",
"vision": "^4.0.1",
"walk": "^2.3.9",
"winston": "^2.1.1",
"winston-daily-rotate-file": "^1.0.1",
"yargs-parser": "^10.1.0"
},
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.0",
"@babel/helper-define-polyfill-provider": "^0.2.0",
"@babel/node": "^7.0.0",
"@babel/plugin-proposal-class-properties": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/register": "^7.0.0",
"husky": "^4.3.0",
"jest": "^26.6.3",
"lint-staged": "^10.3.0",
"nodemon": "^2.0.22",
"npm-watch": "^0.7.0",
"prettier": "2.1.1"
},
"repository": {
"type": "git",
"url": "https://github.com/AMPATH/etl-rest-server"
},
"bugs": {
"url": "https://github.com/AMPATH/etl-rest-server/issues"
}
}