-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
115 lines (115 loc) · 4.51 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
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
{
"name": "dbildungs-iam-server",
"version": "0.7.0",
"description": "",
"author": "Dataport AöR",
"private": true,
"license": "EUPL-1.2",
"type": "module",
"engines": {
"node": "= 20.11.1"
},
"scripts": {
"build": "nest build",
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
"start": "nest start server ",
"start:debug": "nest start server --debug --watch",
"start:prod": "node dist/src/server/main.js",
"test": "jest",
"test:ci": "jest --coverage --maxWorkers=100%",
"test:cov": "jest --coverage --maxWorkers=50%",
"test:watch": "jest --maxWorkers=50% --watch",
"test:unit": "jest --maxWorkers=50% --selectProjects unit",
"test:integration": "jest --maxWorkers=50% --selectProjects integration",
"lint": "eslint \"./{src,test}/**/*.ts\" --ignore-path .gitignore --max-warnings=0",
"lint:fix": "eslint \"./{src,test}/**/*.ts\" --fix --ignore-path .gitignore",
"start:console": "nest start console --",
"db:seed": "npm run start:console -- db seed",
"db:migration-init": "npm run start:console -- db migration-init",
"db:migration-create": "npm run start:console -- db migration-create",
"db:migration-apply": "npm run start:console -- db migration-apply",
"keycloak:update-clients": "npm run start:console -- keycloak update-clients dev",
"setup": "npm run db:migration-apply && npm run keycloak:update-clients && npm run db:seed dev",
"db:seedingdata-generate": "npm run start:console -- db seedingdata-generate ./seeding/dev/01/ numberOfSchools=50 classesPerSchool=12"
},
"dependencies": {
"@automapper/classes": "^8.8.1",
"@automapper/core": "^8.8.1",
"@automapper/nestjs": "^8.8.1",
"@faker-js/faker": "^8.4.1",
"@golevelup/nestjs-discovery": "^4.0.1",
"@keycloak/keycloak-admin-client": "^25.0.4",
"@mikro-orm/core": "^6.2.1",
"@mikro-orm/migrations": "^6.2.1",
"@mikro-orm/nestjs": "^5.2.3",
"@mikro-orm/postgresql": "^6.2.1",
"@nestjs/axios": "^3.0.2",
"@nestjs/common": "^10.3.7",
"@nestjs/config": "^3.2.2",
"@nestjs/core": "^10.3.7",
"@nestjs/passport": "^10.0.3",
"@nestjs/platform-express": "^10.3.7",
"@nestjs/swagger": "^7.3.1",
"@nestjs/terminus": "^10.2.3",
"@s3pweb/keycloak-admin-client-cjs": "^22.0.1",
"async-mutex": "^0.5.0",
"axios": "^1.6.8",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.1",
"connect-redis": "^7.1.1",
"express": "^4.19.2",
"express-session": "^1.18.0",
"fast-xml-parser": "^4.4.0",
"follow-redirects": "^1.15.6",
"generate-password-ts": "^1.6.5",
"jsonwebtoken": "^9.0.2",
"jwks-rsa": "^3.1.0",
"ldapts": "^7.0.11",
"lodash-es": "^4.17.21",
"nest-commander": "^3.12.5",
"nest-keycloak-connect": "^1.10.0",
"openid-client": "^5.6.5",
"papaparse": "^5.4.1",
"passport": "^0.7.0",
"passport-jwt": "^4.0.1",
"redis": "^4.7.0",
"reflect-metadata": "^0.1.14",
"rxjs": "^7.2.0",
"uuid": "^10.0.0",
"winston": "^3.13.0"
},
"devDependencies": {
"@golevelup/ts-jest": "^0.5.0",
"@mikro-orm/cli": "^6.2.1",
"@nestjs/cli": "^10.3.2",
"@nestjs/schematics": "^10.1.1",
"@nestjs/testing": "^10.3.7",
"@testcontainers/postgresql": "^10.8.2",
"@types/express": "^4.17.21",
"@types/express-session": "^1.18.0",
"@types/jest": "^29.5.12",
"@types/lodash-es": "^4.17.12",
"@types/multer": "^1.4.12",
"@types/node": "^20.12.7",
"@types/papaparse": "^5.3.14",
"@types/passport": "^1.0.16",
"@types/passport-jwt": "^4.0.1",
"@types/supertest": "^6.0.2",
"@typescript-eslint/eslint-plugin": "^7.6.0",
"@typescript-eslint/parser": "^7.6.0",
"eslint": "^8.57.0",
"eslint-config-airbnb-typescript": "^18.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jest": "^28.2.0",
"eslint-plugin-prettier": "^5.1.3",
"jest": "^29.7.0",
"prettier": "^3.2.5",
"source-map-support": "^0.5.20",
"supertest": "^6.3.4",
"testcontainers": "^10.8.2",
"ts-jest": "^29.1.2",
"ts-loader": "^9.5.1",
"ts-node": "^10.9.2",
"typescript": "^5.4.5"
}
}