-
Notifications
You must be signed in to change notification settings - Fork 132
/
Copy pathpackage.json
86 lines (86 loc) · 2.7 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
{
"packageManager": "[email protected]",
"_moduleAliases": {
"@api": "dist/api",
"@helpers": "dist/helpers",
"@entity": "dist/entity",
"@interfaces": "dist/interfaces",
"@middlewares": "dist/middlewares"
},
"resolutions": {
"@azure/core-rest-pipeline": "1.12.1",
"image-size": "1.0.2"
},
"author": "Envision Blockchain Solutions <[email protected]>",
"dependencies": {
"@guardian/common": "^3.1.0",
"@guardian/interfaces": "^3.1.0",
"@nestjs/common": "^9.4.1",
"@nestjs/core": "^9.4.1",
"@nestjs/jwt": "^10.0.3",
"@nestjs/microservices": "^9.4.1",
"@nestjs/platform-express": "^9.4.2",
"@nestjs/swagger": "^6.3.0",
"@types/express-fileupload": "^1.4.1",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.0",
"cron": "^2.0.0",
"dotenv": "^16.0.0",
"excel4node": "^1.8.2",
"express": "^4.17.1",
"express-fileupload": "^1.4.0",
"gulp": "^4.0.2",
"gulp-copy": "^4.0.1",
"gulp-rename": "^2.0.0",
"gulp-sourcemaps": "^3.0.0",
"gulp-typescript": "^6.0.0-alpha.1",
"hpp": "^0.2.3",
"http-errors": "^2.0.0",
"jszip": "^3.7.1",
"module-alias": "^2.2.2",
"prom-client": "^14.1.1",
"prometheus-api-metrics": "3.2.2",
"reflect-metadata": "^0.1.13",
"ws": "^8.2.1",
"yaml": "^2.3.1",
"yup": "^1.1.1",
"rxjs": "^7.8.1"
},
"description": "",
"devDependencies": {
"@types/express": "^4.17.13",
"@types/gulp": "^4",
"@types/gulp-rename": "^2",
"@types/jszip": "^3.4.1",
"@types/node": "^22.10.10",
"@types/ws": "^8.2.2",
"chai": "^4.3.4",
"cross-env": "^7.0.3",
"mocha": "^9.2.0",
"mocha-junit-reporter": "^2.0.2",
"nodemon": "^2.0.12",
"rewire": "^6.0.0",
"sinon": "^15.0.4",
"tslint": "^6.1.3",
"typescript": "^4.5.5"
},
"files": [
"dist"
],
"license": "Apache-2.0",
"main": "dist/index.js",
"module": "dist/index.js",
"name": "analytics-service",
"scripts": {
"build": "tsc",
"build:prod": "tsc --project tsconfig.production.json",
"debug": "nodemon dist/index.js",
"dev:docker": "npm run build && nodemon .",
"dev": "tsc -w",
"lint": "tslint --config ../tslint.json --project .",
"start": "node dist/index.js",
"test": "mocha tests/**/*.test.js --reporter mocha-junit-reporter --reporter-options mochaFile=../test_results/ui-service.xml"
},
"type": "module",
"version": "3.1.0"
}