forked from REAN-Foundation/reancare-service
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
115 lines (115 loc) · 3.68 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
{
"name": "reancare",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "NODE_OPTIONS=--max_old_space_size=5120 tsc",
"start": "tsc && ts-node --files ./src/index.ts",
"lint": "eslint ./src/**",
"lint:fix": "eslint ./src/** --fix",
"test": "tsc && mocha -u tdd --timeout 999999 --colors ./dist/tests/api-tests/**/*.js",
"test-debug": "NODE_ENV=test mocha --file ./tests/api-tests/init.ts --reporter spec --exit"
},
"repository": {
"type": "git",
"url": "yes"
},
"keywords": [],
"author": "Kiran Kharade",
"license": "ISC",
"dependencies": {
"@aws-sdk/client-s3": "^3.325.0",
"@aws-sdk/client-ses": "^3.370.0",
"@aws-sdk/credential-provider-node": "^3.501.0",
"@aws-sdk/lib-storage": "^3.405.0",
"@aws-sdk/s3-request-presigner": "^3.498.0",
"@faker-js/faker": "^8.0.2",
"@types/adm-zip": "^0.5.1",
"@types/bcryptjs": "^2.4.3",
"@types/express": "^4.17.17",
"@types/express-fileupload": "^1.4.1",
"@types/mime-types": "^2.1.1",
"@types/sequelize": "^4.28.14",
"@types/sharp": "^0.31.1",
"@types/sqlite3": "^3.1.8",
"adm-zip": "^0.5.10",
"approx-string-match": "^1.1.0",
"async": "^3.2.4",
"aws-sdk": "^2.1542.0",
"axios": "^1.5.0",
"bcryptjs": "^2.4.3",
"better-sqlite3": "^8.6.0",
"body-parser": "^1.20.2",
"cors": "^2.8.5",
"country-currency-phone": "^0.1.11",
"csv-writer": "^1.6.0",
"dayjs": "^1.11.7",
"dotenv": "^8.2.0",
"express": "^4.19.2",
"express-fileupload": "^1.2.1",
"express-validator": "^6.15.0",
"feed": "^4.2.2",
"firebase-admin": "^12.0.0",
"generate-password": "^1.7.0",
"googleapis": "^95.0.0",
"helmet": "^5.1.1",
"jsonwebtoken": "^9.0.2",
"mime-types": "^2.1.35",
"mysql2": "^3.9.7",
"needle": "^3.2.0",
"node-cron": "^3.0.0",
"node-html-to-image": "^3.3.0",
"node-xlsx": "^0.4.0",
"nodemailer": "^6.9.9",
"pdfkit": "^0.13.0",
"pg": "^8.11.3",
"pg-hstore": "^2.3.3",
"puppeteer": "^19.8.2",
"reflect-metadata": "^0.1.13",
"sequelize": "^6.30.0",
"sequelize-typescript": "^2.1.6",
"sharp": "^0.32.6",
"sleep": "^6.3.0",
"sqlite": "^5.0.1",
"sqlite3": "^5.1.7",
"tar": "^7.2.0",
"terra-api": "^1.4.0",
"timezone-support": "^3.1.0",
"tsyringe": "^4.8.0",
"twilio": "^4.16.0",
"typeorm": "^0.3.19",
"uuid": "^9.0.1",
"uuid-apikey": "^1.5.3",
"word-wrap": "^1.2.5",
"xmlbuilder": "^15.1.1"
},
"devDependencies": {
"@types/body-parser": "^1.19.0",
"@types/chai": "^4.3.5",
"@types/fs-extra": "^9.0.11",
"@types/mocha": "^10.0.1",
"@types/node": "^18.17.15",
"@types/nodemailer": "^6.4.8",
"@types/pdfkit": "^0.12.10",
"@types/shelljs": "^0.8.8",
"@types/supertest": "^2.0.12",
"@types/uuid": "^9.0.2",
"@types/validator": "^13.1.3",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"chai": "^4.3.8",
"eslint": "8.45.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.27.5",
"mocha": "^10.2.0",
"supertest": "^6.3.3",
"ts-node": "^10.9.1",
"typescript": "^5.1.6"
},
"jest": {
"projects": [
"src/modules/ehr/jest.config.ts"
]
}
}