-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
160 lines (160 loc) · 5.09 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
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
{
"name": "ems-backend",
"version": "2.14.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "NODE_PATH=./build node build/src/index.js",
"build": "tsc -p tsconfig.json && tsconfig-replace-paths -p tsconfig.json",
"dev": "nodemon -r tsconfig-paths/register -r dotenv/config src/index.ts",
"lint": "eslint . --ext .ts",
"test": "jest --coverage",
"check-i18n": "node .scripts/check-i18n",
"migrate": "ts-node -r tsconfig-paths/register -r dotenv/config ./src/migrations/index.ts",
"migrate:create": "migrate create --template-file ./src/migrations/template.ts --migrations-dir=\"./migrations\" --compiler=\"ts:./src/migrations/ts-compiler.js\"",
"migrate:up": "ts-node -r tsconfig-paths/register -r dotenv/config ./src/migrations/index.ts up",
"migrate:down": "ts-node -r tsconfig-paths/register -r dotenv/config ./src/migrations/index.ts down",
"migrate:list": "migrate --migrations-dir=\"./migrations\" --compiler=\"ts:./src/migrations/ts-compiler.js\" list",
"semantic-release": "semantic-release",
"postinstall": "./setup-hooks.sh"
},
"nodemonConfig": {
"verbose": true,
"ignore": [
"src/**/*.graphql"
],
"watch": [
"src"
],
"ext": "ts",
"execMap": {
"ts": "node --inspect=0.0.0.0:9229 --nolazy -r ts-node/register"
}
},
"author": "",
"license": "ISC",
"dependencies": {
"@apollo/datasource-rest": "^6.1.0",
"@apollo/server": "^4.9.1",
"@azure/storage-blob": "^12.5.0",
"@casl/ability": "^6.5.0",
"@casl/mongoose": "^7.2.1",
"@graphql-tools/schema": "^10.0.0",
"@turf/helpers": "^6.5.0",
"@turf/turf": "^6.5.0",
"@ucast/mongo2js": "^1.3.3",
"apollo-server-cache-redis": "^3.3.1",
"axios": "^1.4.0",
"axios-cache-interceptor": "^1.6.2",
"body-parser": "^1.20.1",
"bson": "^4.2.3",
"config": "^3.3.9",
"cors": "^2.8.5",
"cron": "^2.3.1",
"cron-validator": "^1.3.1",
"crypto-js": "^4.0.0",
"dotenv": "^10.0.0",
"email-templates": "^10.0.1",
"email-validator": "^2.0.4",
"events": "^3.3.0",
"exceljs": "^4.4.0",
"express": "^4.18.2",
"express-fileupload": "^1.4.0",
"express-rate-limit": "^6.4.0",
"express-session": "^1.17.3",
"express-winston": "^4.2.0",
"graphql": "^16.6.0",
"graphql-redis-subscriptions": "^2.6.0",
"graphql-scalars": "^1.22.2",
"graphql-subscriptions": "^2.0.0",
"graphql-tag": "^2.12.6",
"graphql-type-json": "^0.3.2",
"graphql-ws": "^5.14.0",
"http": "0.0.1-security",
"http-status-codes": "^2.3.0",
"i18next": "^21.6.13",
"i18next-http-middleware": "^3.2.0",
"i18next-node-fs-backend": "^2.1.3",
"inflection": "^1.12.0",
"ioredis": "^5.3.2",
"json2csv": "^5.0.6",
"jsonpath": "^1.1.1",
"jsonwebtoken": "^9.0.0",
"jwt-decode": "^3.1.2",
"lodash": "^4.17.21",
"migrate": "^1.8.0",
"mime-types": "^2.1.33",
"mongoose": "^7.4.3",
"node-cache": "^5.1.2",
"node-fetch": "^2.6.1",
"nodemailer": "^6.7.2",
"passport": "^0.6.0",
"passport-azure-ad": "^4.3.4",
"passport-keycloak-bearer": "^2.4.0",
"pug": "^3.0.2",
"redis": "^4.6.7",
"sanitize-filename": "^1.6.3",
"sass": "^1.63.6",
"survey-knockout": "^1.9.64",
"ts-node-dev": "^2.0.0",
"tsconfig-paths": "^4.1.0",
"uuid": "^8.3.2",
"wellknown": "^0.5.0",
"winston": "^3.8.2",
"winston-daily-rotate-file": "^4.7.1",
"ws": "^8.13.0",
"xhr2": "^0.2.1"
},
"devDependencies": {
"@azure/msal-node": "^1.15.0",
"@faker-js/faker": "^7.6.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@semantic-release/npm": "^11.0.1",
"@semantic-release/release-notes-generator": "^12.1.0",
"@types/config": "^3.3.0",
"@types/cron": "^2.0.1",
"@types/crypto-js": "^4.0.1",
"@types/express": "^4.17.9",
"@types/express-fileupload": "^1.2.2",
"@types/http-proxy": "^1.17.8",
"@types/inflection": "^1.5.28",
"@types/jest": "^29.2.3",
"@types/jsonpath": "^0.2.0",
"@types/lodash": "^4.14.171",
"@types/mime-types": "^2.1.1",
"@types/passport-azure-ad": "^4.3.0",
"@types/supertest": "^2.0.11",
"@types/uuid": "^9.0.2",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"eslint": "^7.25.0",
"eslint-config-airbnb-typescript": "^14.0.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-deprecation": "^1.3.3",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jsdoc": "^37.6.1",
"eslint-plugin-prettier": "^4.0.0",
"faker": "^5.5.3",
"jest": "^29.7.0",
"mongodb-memory-server": "^10.1.2",
"nodemon": "^2.0.20",
"prettier": "^2.5.1",
"semantic-release": "^22.0.8",
"supertest": "^6.3.3",
"ts-jest": "^29.0.3",
"ts-node": "^10.0.0",
"tsc-alias": "^1.7.0",
"tsconfig-replace-paths": "^0.0.11",
"typescript": "^4.1.2"
},
"overrides": {
"i18next-node-fs-backend": {
"json5": "^2.2.3"
}
},
"repository": {
"type": "git",
"url": "https://github.com/ReliefApplications/ems-backend.git"
}
}