-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
107 lines (107 loc) · 3.47 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
{
"name": "project-sparrow-api",
"version": "0.0.1",
"description": "Backend APIs for Project Sparrow.",
"author": "techdome",
"license": "",
"scripts": {
"build": "rimraf dist && tsc -p tsconfig.build.json",
"format": "prettier --write \"src/**/*.ts\"",
"start": "ts-node -r tsconfig-paths/register src/main.ts",
"start:dev": "nodemon",
"start:debug": "nodemon --config nodemon-debug.json",
"start:prod": "node dist/main.js",
"typedocs": "npx compodoc -p tsconfig.json -s -d docs",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"lint:staged:fix": "npx lint-staged",
"test": "jest",
"test:watch": "jest --watch",
"test:cov": "jest --coverage",
"test:debug": "node --inspect-brk -r tsconfig-paths/register -r ts-node/register node_modules/.bin/jest --runInBand",
"test:e2e": "jest --config ./test/jest-e2e.json --detectOpenHandles --forceExit",
"prepare": "husky install",
"docker:up": "docker compose up --build -d",
"docker:down": "docker compose down"
},
"dependencies": {
"@apidevtools/swagger-parser": "^10.1.0",
"@azure/service-bus": "^7.9.1",
"@azure/storage-blob": "^12.18.0",
"@blazity/nest-file-fastify": "^1.0.0",
"@fastify/helmet": "^11.0.0",
"@fastify/multipart": "^8.0.0",
"@fastify/rate-limit": "^8.0.3",
"@fastify/static": "^6.10.2",
"@nestjs/common": "10.1.3",
"@nestjs/config": "^3.0.0",
"@nestjs/core": "^10.1.3",
"@nestjs/jwt": "^10.1.0",
"@nestjs/passport": "10.0.0",
"@nestjs/platform-fastify": "^10.1.3",
"@nestjs/platform-socket.io": "^10.4.0",
"@nestjs/swagger": "^7.1.7",
"@nestjs/websockets": "^10.4.0",
"@types/async-retry": "^1.4.8",
"@types/nodemailer": "^6.4.11",
"@types/nodemailer-express-handlebars": "^4.0.4",
"@types/passport-google-oauth20": "^2.0.12",
"@typescript-eslint/eslint-plugin": "^6.3.0",
"@typescript-eslint/parser": "^6.3.0",
"applicationinsights": "^3.2.2",
"async-retry": "^1.3.3",
"axios": "^1.5.1",
"class-transformer": "0.5.1",
"class-transformer-validator": "^0.9.1",
"class-validator": "^0.14.0",
"curlconverter": "^4.9.0",
"dotenv": "16.0.1",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"fastify": "^4.21.0",
"gravatar": "1.8.2",
"husky": "^8.0.3",
"js-yaml": "^4.1.0",
"kafkajs": "^2.2.4",
"mongodb": "^5.7.0",
"nest-access-control": "2.2.0",
"nestjs-pino": "^3.5.0",
"nodemailer": "^6.9.6",
"nodemailer-express-handlebars": "^6.1.0",
"openai": "^4.52.7",
"passport": "0.6.0",
"passport-google-oauth20": "^2.0.0",
"passport-jwt": "^4.0.1",
"pino": "^8.15.3",
"pino-pretty": "^10.2.0",
"reflect-metadata": "0.1.13",
"rimraf": "3.0.2",
"rxjs": "7.5.6",
"socket.io": "^4.7.5",
"uuid": "^9.0.1"
},
"devDependencies": {
"@compodoc/compodoc": "1.1.19",
"@jest/types": "^29.6.3",
"@nestjs/testing": "^10.1.3",
"@types/chai": "^4.3.5",
"@types/gravatar": "1.8.3",
"@types/jest": "^29.5.3",
"@types/js-yaml": "^4.0.7",
"@types/node": "16.11.56",
"@types/passport-jwt": "^3.0.9",
"@types/supertest": "^2.0.12",
"@types/uuid": "^9.0.5",
"chai": "4.3.6",
"husky": "^8.0.0",
"jest": "29.6.2",
"lint-staged": "^14.0.0",
"nodemon": "^3.0.1",
"prettier": "^3.0.1",
"supertest": "^6.3.3",
"ts-jest": "29.1.1",
"ts-node": "10.9.1",
"tsconfig-paths": "4.1.0",
"typescript": "4.7.4"
}
}