-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
91 lines (91 loc) · 2.36 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
{
"name": "storm",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "tsc",
"start": "tsc && ts-node --files ./src/index.ts",
"lint": "eslint ./src/**",
"lint:fix": "eslint ./src/** --fix",
"test": ""
},
"repository": {
"type": "git",
"url": "yes"
},
"keywords": [],
"author": "Kiran Kharade",
"license": "ISC",
"dependencies": {
"@aws-sdk/client-comprehendmedical": "^3.501.0",
"@types/adm-zip": "^0.4.34",
"@types/bcryptjs": "^2.4.2",
"@types/express": "^4.17.17",
"@types/express-fileupload": "^1.1.7",
"@types/mime-types": "^2.1.1",
"@types/sequelize": "^4.28.9",
"@types/sharp": "^0.31.1",
"adm-zip": "^0.5.6",
"ansi-regex": "^6.0.1",
"approx-string-match": "^1.1.0",
"aws-sdk": "^2.1328.0",
"axios": "^1.6.4",
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"check-password-strength": "^2.0.5",
"cors": "^2.8.5",
"dayjs": "^1.10.7",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-fileupload": "^1.2.1",
"express-rate-limit": "^6.11.2",
"generate-password": "^1.7.0",
"googleapis": "^95.0.0",
"helmet": "^5.0.2",
"joi": "^17.8.3",
"jsonwebtoken": "^9.0.0",
"mime-types": "^2.1.34",
"mysql2": "^2.2.5",
"needle": "^3.0.0",
"node-cron": "^3.0.0",
"node-forge": "^1.3.0",
"node-xlsx": "^0.4.0",
"pg": "^8.8.0",
"pg-hstore": "^2.3.4",
"readdirp": "^3.6.0",
"reflect-metadata": "^0.1.13",
"sequelize": "^6.15.0",
"sharp": "^0.33.2",
"sleep": "^6.3.0",
"timezone-support": "^2.0.2",
"tsyringe": "^4.6.0",
"twilio": "^4.19.3",
"uuid": "^8.3.2",
"uuid-apikey": "^1.5.3"
},
"devDependencies": {
"@jest/types": "^27.0.6",
"@types/body-parser": "^1.19.0",
"@types/dotenv": "^8.2.0",
"@types/fs-extra": "^9.0.11",
"@types/jest": "^27.4.0",
"@types/node": "^14.17.0",
"@types/shelljs": "^0.8.8",
"@types/validator": "^13.1.3",
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/parser": "^4.22.0",
"eslint": "^7.24.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.22.1",
"jest": "^27.0.6",
"ts-jest": "^27.0.4",
"ts-node": "^10.4.0",
"typescript": "^4.2.4"
},
"jest": {
"projects": [
"src/modules/ehr/jest.config.ts"
]
}
}