-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 3.32 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 3.32 KB
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
{
"dependencies": {
"@aws-sdk/client-ses": "^3.929.0",
"@nestjs/axios": "^4.0.0",
"@nestjs/common": "^11.0.11",
"@nestjs/config": "^4.0.1",
"@nestjs/core": "^11.0.11",
"@nestjs/jwt": "^11.0.0",
"@nestjs/mapped-types": "^2.1.0",
"@nestjs/mongoose": "^11.0.1",
"@nestjs/passport": "^11.0.5",
"@nestjs/platform-express": "^11.0.11",
"@nestjs/swagger": "^11.0.6",
"@types/cookie-parser": "^1.4.9",
"@types/passport-google-oauth20": "^2.0.16",
"axios": "^1.9.0",
"bcryptjs": "^3.0.2",
"body-parser": "^2.2.0",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.1",
"cookie-parser": "^1.4.7",
"dotenv": "^16.5.0",
"express": "^5.1.0",
"ioredis": "^5.6.1",
"mongoose": "^8.11.0",
"morgan": "^1.10.0",
"nest-winston": "^1.10.2",
"passport": "^0.7.0",
"passport-google-oauth20": "^2.0.0",
"passport-jwt": "^4.0.1",
"reflect-metadata": "^0.2.2",
"rrule": "^2.8.1",
"rxjs": "^7.8.2",
"ses": "^1.14.0",
"stripe": "^18.1.1",
"twilio": "^5.7.0",
"winston": "^3.17.0",
"winston-daily-rotate-file": "^5.0.0",
"winston-transport": "^4.9.0"
},
"scripts": {
"dev": "nest start --watch",
"build": "nest build",
"start": "node dist/main",
"type-check": "tsc --noEmit",
"type-check:test": "tsc --noEmit --project tsconfig.test.json --skipLibCheck --noEmitOnError false || echo 'Test type check completed with expected ObjectId type warnings'",
"test": "jest --config jest.config.json --detectOpenHandles",
"test:unit": "jest --config jest.config.json --testPathPattern=\"test/unit\" --detectOpenHandles",
"test:integration": "jest --config jest.config.json --testPathPattern=\"test/integration\" --detectOpenHandles",
"test:e2e": "jest --config jest.config.json --testPathPattern=\"test/e2e\" --detectOpenHandles",
"test:ci": "jest --config jest.config.json --testPathPattern=\"test/(unit|integration)\" --detectOpenHandles --forceExit",
"test:watch": "jest --config jest.config.json --watch --detectOpenHandles",
"lint": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\" && eslint --fix \"src/**/*.ts\" \"test/**/*.ts\"",
"lint:src": "prettier --write \"src/**/*.ts\" && eslint --fix \"src/**/*.ts\"",
"lint:test": "prettier --write \"test/**/*.ts\" && eslint --fix \"test/**/*.ts\"",
"seed": "ts-node -r tsconfig-paths/register scripts/seeds/index.ts"
},
"devDependencies": {
"@darraghor/eslint-plugin-nestjs-typed": "^6.4.12",
"@eslint/js": "^9.26.0",
"@nestjs/cli": "^11.0.7",
"@nestjs/testing": "^11.0.11",
"@types/bcrypt": "^5.0.2",
"@types/body-parser": "^1.19.6",
"@types/express": "^5.0.1",
"@types/jest": "^29.5.14",
"@types/morgan": "^1.9.9",
"@types/node": "^22.13.8",
"@types/passport-jwt": "^4.0.1",
"@types/supertest": "^6.0.3",
"@typescript-eslint/eslint-plugin": "^8.31.1",
"@typescript-eslint/parser": "^8.31.1",
"eslint": "^9.26.0",
"eslint-plugin-prettier": "^5.3.1",
"eslint-plugin-simple-import-sort": "^12.1.1",
"globals": "^16.0.0",
"jest": "^29.7.0",
"mongodb-memory-server": "^10.2.0",
"prettier": "^3.5.3",
"supertest": "^7.1.0",
"ts-jest": "^29.3.2",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.8.3",
"typescript-eslint": "^8.31.1"
}
}