-
Notifications
You must be signed in to change notification settings - Fork 29
Expand file tree
/
Copy pathpackage.json
More file actions
124 lines (124 loc) · 3.52 KB
/
package.json
File metadata and controls
124 lines (124 loc) · 3.52 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
117
118
119
120
121
122
123
124
{
"name": "shiksha-backend-v2",
"version": "0.0.1",
"description": "",
"author": "",
"private": true,
"license": "UNLICENSED",
"engines": {
"node": ">=20.0.0",
"npm": "10.8.2"
},
"overrides": {
"glob": "^10.4.6",
"rimraf": "^5.0.10",
"superagent": "^10.2.2",
"@humanwhocodes/config-array": "npm:@eslint/config-array@^0.23.0",
"@humanwhocodes/object-schema": "npm:@eslint/object-schema@^3.0.0",
"jsdom": "^27.2.0"
},
"scripts": {
"prebuild": "rimraf dist",
"build": "nest build",
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
"start": "nest start",
"start:dev": "nest start --watch",
"start:debug": "nest start --debug --watch",
"start:prod": "node dist/main",
"lint": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix --quiet",
"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"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.940.0",
"@aws-sdk/s3-presigned-post": "^3.940.0",
"@nestjs/axios": "^4.0.1",
"@nestjs/common": "^11.1.9",
"@nestjs/config": "^4.0.2",
"@nestjs/core": "^11.1.9",
"@nestjs/jwt": "^11.0.1",
"@nestjs/passport": "^11.0.5",
"@nestjs/platform-express": "^11.1.9",
"@nestjs/schedule": "^6.0.1",
"@nestjs/swagger": "^11.2.3",
"@nestjs/typeorm": "^11.0.0",
"@types/multer": "^2.0.0",
"axios": "^1.13.2",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.3",
"csv": "^6.4.1",
"csvtojson": "^2.0.14",
"date-fns": "^3.6.0",
"dotenv": "^16.4.7",
"express": "^4.21.2",
"form-data": "^4.0.5",
"graphql-tag": "^2.12.6",
"in-memory-faceted-search": "^1.0.1",
"jwt-decode": "^3.1.2",
"kafkajs": "^2.2.4",
"moment": "^2.30.1",
"multer": "^2.0.2",
"node-cron": "^3.0.3",
"node-schedule": "^2.1.1",
"object-resolve-path": "^1.1.1",
"passport": "^0.7.0",
"passport-jwt": "^4.0.1",
"pg": "^8.16.3",
"reflect-metadata": "^0.1.14",
"rimraf": "^5.0.10",
"rxjs": "^7.8.2",
"swagger-ui-express": "^4.6.3",
"templates.js": "^0.3.11",
"typeorm": "^0.3.27",
"uuid": "^11.1.0",
"winston": "^3.18.3"
},
"devDependencies": {
"@eslint/config-array": "^0.23.0",
"@eslint/object-schema": "^3.0.0",
"@nestjs/cli": "^11.0.14",
"@nestjs/schematics": "^10.1.4",
"@nestjs/testing": "^11.1.9",
"@types/cron": "^1.7.3",
"@types/express": "^4.17.25",
"@types/jest": "27.4.1",
"@types/node": "^20.0.0",
"@types/prettier": "^2.7.3",
"@types/supertest": "^6.0.3",
"@types/uuid": "^9.0.8",
"@typescript-eslint/eslint-plugin": "^8.48.0",
"@typescript-eslint/parser": "^8.48.0",
"eslint": "^9.39.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.4",
"jest": "^27.2.5",
"prettier": "^3.7.3",
"source-map-support": "^0.5.20",
"supertest": "^7.1.4",
"ts-jest": "^27.0.3",
"ts-loader": "^9.2.3",
"ts-node": "^10.9.2",
"tsconfig-paths": "^3.10.1",
"typescript": "^4.9.5"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": "src",
"testRegex": ".*\\.spec\\.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"collectCoverageFrom": [
"**/*.(t|j)s"
],
"coverageDirectory": "../coverage",
"testEnvironment": "node"
}
}