-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
116 lines (116 loc) · 3.22 KB
/
package.json
File metadata and controls
116 lines (116 loc) · 3.22 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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
{
"name": "easey-qa-certification-api",
"version": "2.0",
"description": "EPA CAMD QA Certification Management API",
"license": "MIT",
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/US-EPA-CAMD/easey-qa-certification-api.git"
},
"engines": {
"node": "22.x"
},
"scripts": {
"prebuild": "rimraf dist",
"build": "nest build",
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
"repl": "nest start --watch --entryFile repl",
"start": "node dist/main",
"start:dev": "nest start --watch",
"start:debug": "nest start --debug --watch",
"lint": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix",
"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",
"up": "yarn && yarn start:dev"
},
"resolutions": {
"xml2js": "^0.5.0"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.1030.0",
"@nestjs/axios": "^4.0.1",
"@nestjs/common": "^11.1.19",
"@nestjs/config": "^4.0.4",
"@nestjs/core": "^11.1.19",
"@nestjs/platform-express": "^11.1.19",
"@nestjs/swagger": "^11.2.7",
"@nestjs/typeorm": "^11.0.1",
"@types/multer": "^2.1.0",
"@us-epa-camd/easey-common": "21.5.1",
"axios": "^1.15.0",
"class-transformer": "0.5.1",
"class-validator": "0.15.1",
"dotenv": "^17.4.2",
"express": "^5.2.1",
"fast-xml-parser": "^5.5.12",
"moment": "^2.30.1",
"pg": "^8.20.0",
"reflect-metadata": "^0.2.2",
"rimraf": "^6.1.3",
"rxjs": "^7.8.2",
"swagger-ui-express": "^5.0.1",
"typeorm": "0.3.28",
"uuid": "^8.3.2"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.4",
"@eslint/js": "^9.39.2",
"@nestjs/cli": "^11.0.19",
"@nestjs/schematics": "^11.0.10",
"@nestjs/testing": "^11.1.19",
"@types/express": "^5.0.6",
"@types/jest": "30.0.0",
"@types/node": "22",
"@types/supertest": "^7.2.0",
"@types/uuid": "^8.3.1",
"@typescript-eslint/eslint-plugin": "8.58.2",
"@typescript-eslint/parser": "8.58.2",
"eslint": "^9.39.4",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-prettier": "^5.5.5",
"globals": "^17.5.0",
"jest": "^30.3.0",
"jest-sonar-reporter": "^2.0.0",
"prettier": "^3.8.2",
"sinon": "^21.1.2",
"supertest": "^7.2.2",
"ts-jest": "^29.4.9",
"ts-loader": "^9.5.7",
"ts-node": "^8.6.2",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.58.2"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": "src",
"testRegex": ".spec.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"coverageDirectory": "../coverage",
"testEnvironment": "node",
"collectCoverage": true,
"collectCoverageFrom": [
"**/*.ts",
"!**/*.config.ts",
"!**/*.module.ts",
"!routes.ts",
"!main.ts"
],
"testResultsProcessor": "jest-sonar-reporter",
"coveragePathIgnorePatterns": [
"/node_modules/",
"/test/"
]
}
}