-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 2.9 KB
/
Copy pathpackage.json
File metadata and controls
95 lines (95 loc) · 2.9 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
88
89
90
91
92
93
94
95
{
"name": "@topcoder/opportunities-api-v6",
"version": "0.1.0",
"private": true,
"description": "Topcoder v6 opportunity summary aggregation API",
"license": "UNLICENSED",
"packageManager": "pnpm@11.15.1",
"engines": {
"node": "26.x"
},
"scripts": {
"build": "nest build",
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
"lint": "eslint \"src/**/*.ts\" \"test/**/*.ts\" --no-error-on-unmatched-pattern",
"lint:fix": "pnpm lint --fix",
"start": "nest start",
"start:dev": "nest start --watch",
"start:prod": "node dist/main.js",
"test": "jest",
"test:cov": "jest --coverage"
},
"dependencies": {
"@nestjs/common": "^11.1.6",
"@nestjs/core": "^11.1.6",
"@nestjs/platform-express": "^11.1.6",
"@nestjs/swagger": "^11.2.0",
"@nestjs/throttler": "6.5.0",
"@topcoder/challenge-api-v6": "github:topcoder-platform/challenge-api-v6#aac5966ea785fbb95232e37cc9c36e3388c87f3b&path:packages/challenge-prisma-client",
"@topcoder/engagements-api-v6": "github:topcoder-platform/engagements-api-v6#f5f02f642f81bf547024f03188bc4f095c7326f5&path:packages/engagements-prisma-client",
"@topcoder/projects-api-v6": "github:topcoder-platform/projects-api-v6#6dbb98af539a13fc216f1a3673ccd2ff44db33d5&path:packages/projects-prisma-client",
"@topcoder/review-api-v6-prisma-client": "github:topcoder-platform/review-api-v6#7346bd676e6b01c1212fecb3b2763d4337b9da65&path:packages/review-prisma-client",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.2",
"cors": "^2.8.5",
"dotenv": "^17.2.1",
"reflect-metadata": "^0.2.2",
"rxjs": "^7.8.2"
},
"devDependencies": {
"@eslint/js": "^9.33.0",
"@nestjs/cli": "^11.0.10",
"@nestjs/testing": "^11.1.6",
"@swc/core": "^1.13.3",
"@swc/jest": "^0.2.39",
"@types/express": "^5.0.3",
"@types/jest": "^30.0.0",
"@types/node": "^26.0.0",
"@types/supertest": "^6.0.3",
"eslint": "^9.33.0",
"eslint-config-prettier": "^10.1.8",
"globals": "^16.3.0",
"jest": "^30.0.5",
"prettier": "^3.6.2",
"supertest": "^7.1.4",
"ts-jest": "^29.4.1",
"ts-loader": "^9.5.2",
"ts-node": "^10.9.2",
"typescript": "^5.9.2",
"typescript-eslint": "^8.40.0"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": "src",
"testRegex": ".*\\.spec\\.ts$",
"transform": {
"^.+\\.(t|j)s$": [
"@swc/jest",
{
"jsc": {
"parser": {
"syntax": "typescript",
"decorators": true
},
"transform": {
"decoratorMetadata": true
},
"target": "es2023"
},
"module": {
"type": "commonjs"
}
}
]
},
"collectCoverageFrom": [
"**/*.(t|j)s"
],
"coverageDirectory": "../coverage",
"testEnvironment": "node"
}
}