-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
85 lines (85 loc) · 2.99 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
{
"name": "munch-backend",
"version": "0.0.1",
"description": "",
"author": "",
"private": true,
"license": "UNLICENSED",
"scripts": {
"build": "nest build",
"init": "npm install && npx prisma generate",
"start": "nest start -b swc --type-check",
"dev": "npm run start:dev",
"doc:generate": "compodoc -p tsconfig.json",
"doc:serve": "compodoc -s",
"start:dev": "nest start -b swc --type-check -w",
"start:debug": "nest start --debug --watch",
"start:prod": "node dist/main",
"test": "jest --config ./jest.json",
"test:watch": "jest --watch --config ./jest.json",
"test:cov": "jest --coverage --config ./jest.json",
"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",
"prisma:init": "node prisma/init.js"
},
"dependencies": {
"@elastic/elasticsearch": "^8.13.1",
"@nest-middlewares/cookie-parser": "^10.0.0",
"@nest-middlewares/errorhandler": "^10.0.0",
"@nest-middlewares/helmet": "^10.0.0",
"@nestjs/axios": "^3.0.2",
"@nestjs/common": "^10.3.3",
"@nestjs/config": "^3.2.0",
"@nestjs/core": "^10.3.3",
"@nestjs/jwt": "^10.2.0",
"@nestjs/mapped-types": "^2.0.5",
"@nestjs/passport": "^10.0.3",
"@nestjs/platform-express": "^10.3.3",
"@nestjs/swagger": "^7.3.1",
"@nestjs/terminus": "^10.2.3",
"@paralleldrive/cuid2": "^2.2.2",
"@prisma/client": "^5.10.2",
"bcrypt": "^5.1.1",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.1",
"cookie-parser": "^1.4.6",
"form-data": "^4.0.0",
"helmet": "^7.1.0",
"mailgun.js": "^10.2.3",
"munch-backend": "file:",
"nestjs-rate-limiter": "^3.1.0",
"passport-jwt": "^4.0.1",
"reflect-metadata": "^0.1.14",
"rxjs": "^7.8.1",
"xss": "^1.0.15"
},
"devDependencies": {
"@biomejs/biome": "^1.7.3",
"@compodoc/compodoc": "^1.1.24",
"@golevelup/ts-jest": "^0.5.0",
"@nestjs/cli": "^10.3.2",
"@nestjs/schematics": "^10.1.1",
"@nestjs/testing": "^10.3.3",
"@swc/cli": "^0.3.10",
"@swc/core": "^1.4.6",
"@swc/jest": "^0.2.36",
"@types/bcrypt": "^5.0.2",
"@types/cookie-parser": "^1.4.7",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.12",
"@types/node": "^20.11.26",
"@types/passport-jwt": "^4.0.1",
"@types/supertest": "^2.0.16",
"@types/uuid": "^9.0.8",
"jest": "^29.7.0",
"prettier": "3.2.5",
"prisma": "^5.10.2",
"source-map-support": "^0.5.21",
"supertest": "^6.3.4",
"ts-jest": "^29.1.2",
"ts-loader": "^9.5.1",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.4.2"
}
}