forked from hpi-schul-cloud/schulcloud-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
236 lines (236 loc) · 8.24 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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
{
"name": "schulcloud-server",
"description": "hpi schulcloud server",
"version": "27.1.0",
"homepage": "https://hpi-schul-cloud.de/",
"main": "src/",
"keywords": [
"feathers"
],
"license": "AGPL-3.0",
"repository": {},
"author": {
"name": "HPI Schul-Cloud Team"
},
"contributors": [],
"bugs": {},
"engines": {
"node": "16",
"npm": "8"
},
"scripts": {
"lint-fix": "eslint . --fix --ignore-path .gitignore",
"lint": "eslint . --ignore-path .gitignore",
"test": "npm run nest:test && npm run feathers:test",
"feathers:test": "cross-env NODE_ENV=test npm run setup && npm run coverage",
"feathers:test-inspect": "cross-env NODE_ENV=test npm run setup && npm run mocha-inspect",
"setup": "npm run nest:start:console -- database seed",
"build": "npm run nest:build",
"copy-files": "copyfiles src/**/*.yaml build",
"inspect": "npm run build && node --inspect=5959 build/src/",
"inspect-container": "npm run build && node --inspect=0.0.0.0:5959 build/src/",
"start": "npm run nest:start:prod",
"coverage": "cross-env NODE_ENV=test nyc npm run mocha",
"coverage-codecov": "cross-env NODE_ENV=test nyc report --reporter=text-lcov | codecov --pipe",
"mocha": "cross-env NODE_ENV=test mocha --exit --timeout 15000",
"mocha-watch": "cross-env NODE_ENV=test mocha",
"mocha-inspect": "cross-env NODE_ENV=test mocha --inspect --no-timeout --exit",
"mocha-metrics": "cross-env NODE_ENV=test mocha \"test/routes/*.metrics.js\" --exclude \"{test,src}/**/*.test.{js,ts}\" --no-timeout --exit",
"migration": "migrate --config ./config/migrate.js",
"migration-sync": "migrate list --autosync --config ./config/migrate.js",
"migration-list": "migrate list --config ./config/migrate.js",
"migration-prune": "migrate prune --config ./config/migrate.js",
"migration-persist": "npm run nest:start:console -- database export --collection migrations --override",
"migrate-etherpads": "node ./migrate-etherpads.js",
"nest:prebuild": "rimraf dist",
"nest:build": "nest build",
"nest:build:all": "npm run nest:build",
"nest:docs:serve": "npx @compodoc/compodoc -p tsconfig.json -s -w -a apps/assets --includes apps/server/doc -d docs",
"nest:docs:build": "npx @compodoc/compodoc -p tsconfig.json -w -a apps/assets --includes apps/server/doc -d docs",
"nest:start": "nest start server",
"nest:start:dev": "nest start server --watch",
"nest:start:debug": "nest start server --debug --watch",
"nest:start:prod": "node dist/apps/server/main",
"nest:start:management": "nest start management",
"nest:start:management:dev": "nest start management --watch",
"nest:start:management:debug": "nest start management --debug --watch",
"nest:start:management:prod": "node dist/apps/server/management",
"nest:start:console": "nest start console --",
"nest:start:console:dev": "nest start console --watch --",
"nest:start:console:debug": "nest start console --debug --watch --",
"nest:test": "npm run nest:test:cov && npm run nest:lint",
"nest:test:all": "jest",
"nest:test:spec": "jest \"\\.spec\\.ts$\"",
"nest:test:e2e": "jest \"\\.e2e-spec\\.ts$\"",
"nest:test:watch": "jest --watch",
"nest:test:cov": "jest --coverage",
"nest:test:debug": "jest --runInBand",
"nest:lint": "eslint apps --ignore-path .gitignore",
"nest:lint:fix": "eslint apps --fix --ignore-path .gitignore",
"syncIndexes": "node ./scripts/syncIndexes.js",
"schoolExport": "node ./scripts/schoolExport.js",
"schoolImport": "node ./scripts/schoolImport.js"
},
"dependencies": {
"@feathersjs/authentication": "^4.5.11",
"@feathersjs/authentication-local": "^4.5.11",
"@feathersjs/configuration": "^4.5.11",
"@feathersjs/errors": "^4.5.11",
"@feathersjs/express": "^4.5.11",
"@feathersjs/feathers": "^4.5.11",
"@feathersjs/socketio": "^4.5.11",
"@golevelup/nestjs-rabbitmq": "^1.18.1",
"@hpi-schul-cloud/commons": "^1.3.3",
"@mikro-orm/core": "^4.5.5",
"@mikro-orm/mongodb": "^4.5.5",
"@mikro-orm/nestjs": "^4.3.1",
"@nestjs/common": "^8.2.3",
"@nestjs/core": "^8.2.3",
"@nestjs/jwt": "^8.0.0",
"@nestjs/microservices": "^8.2.3",
"@nestjs/passport": "^8.0.1",
"@nestjs/platform-express": "^8.2.3",
"@nestjs/swagger": "^5.1.0",
"@sentry/node": "^6.2.0",
"ajv": "^8.8.2",
"amqp-connection-manager": "^3.2.2",
"amqplib": "^0.8.0",
"arg": "^5.0.0",
"args": "^5.0.1",
"async": "^3.2.2",
"aws-sdk": "^2.1041.0",
"axios": "^0.24.0",
"bbb-promise": "^1.2.0",
"bcryptjs": "latest",
"body-parser": "^1.15.2",
"bson": "^4.6.0",
"chalk": "^5.0.0",
"class-transformer": "^0.4.0",
"class-validator": "^0.13.1",
"client-oauth2": "^4.2.5",
"commander": "^8.1.0",
"compression": "^1.6.2",
"concurrently": "^6.0.0",
"cors": "^2.8.1",
"cross-env": "^7.0.0",
"crypto-js": "^4.0.0",
"disposable-email-domains": "^1.0.56",
"es6-promisify": "^7.0.0",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.2.0",
"express": "^4.14.0",
"express-openapi-validator": "^4.13.2",
"feathers-hooks-common": "^5.0.3",
"feathers-mongoose": "^6.3.0",
"feathers-swagger": "^1.1.0",
"file-type": "^16.2.0",
"freeport": "^1.0.5",
"html-entities": "^2.3.2",
"jose": "^1.28.1",
"jsonwebtoken": "8.5.1",
"ldapjs": "git://github.com/hpi-schul-cloud/node-ldapjs.git",
"lodash": "^4.17.19",
"migrate-mongoose": "^4.0.0",
"mixwith": "^0.1.1",
"moment": "^2.19.2",
"mongodb-uri": "^0.9.7",
"mongoose": "^5.13.9",
"mongoose-delete": "^0.5.4",
"mongoose-diff-history": "git://github.com/schul-cloud/mongoose-diff-history.git",
"mongoose-history": "^0.8.0",
"mongoose-id-validator": "^0.6.0",
"mongoose-lean-virtuals": "^0.8.1",
"mongoose-shortid-nodeps": "git://github.com/leeroybrun/mongoose-shortid-nodeps.git",
"moodle-client": "^0.5.2",
"nanoid": "^3.1.20",
"nestjs-console": "^7.0.0",
"oauth-1.0a": "^2.2.6",
"papaparse": "^5.1.1",
"passport": "^0.4.1",
"passport-jwt": "^4.0.0",
"passport-local": "^1.0.0",
"prom-client": "^13.1.0",
"prometheus-api-metrics": "^3.1.0",
"qs": "^6.9.4",
"read-chunk": "^3.0.0",
"redis": "^3.0.0",
"reflect-metadata": "^0.1.13",
"request-promise-core": "^1.1.4",
"request-promise-native": "^1.0.3",
"rimraf": "^3.0.2",
"rss-parser": "^3.6.2",
"rxjs": "^7.3.1",
"sanitize-html": "^2.1.0",
"serve-favicon": "^2.3.2",
"service": "^0.1.4",
"socketio-file-upload": "^0.7.0",
"source-map-support": "^0.5.19",
"strip-bom": "^4.0.0",
"swagger-ui-express": "^4.1.6",
"tiny-async-pool": "^1.2.0",
"universal-analytics": "^0.5.1",
"urlsafe-base64": "^1.0.0",
"uuid": "^8.3.0",
"wait-on": "^6.0.0",
"winston": "^3.2.0",
"xml2js-es6-promise": "^1.1.1"
},
"devDependencies": {
"@aws-sdk/client-s3": "^3.44.0",
"@compodoc/compodoc": "^1.1.16",
"@nestjs/cli": "^8.1.4",
"@nestjs/schematics": "^7.2.7",
"@nestjs/testing": "^8.2.3",
"@types/crypto-js": "^4.0.2",
"@types/express": "^4.17.11",
"@types/jest": "^27.0.3",
"@types/lodash": "^4.14.170",
"@types/node": "^16.11.11",
"@types/passport-jwt": "^3.0.5",
"@types/passport-local": "^1.0.33",
"@types/rimraf": "^3.0.2",
"@types/source-map-support": "^0.5.3",
"@types/supertest": "^2.0.10",
"@typescript-eslint/eslint-plugin": "^5.5.0",
"@typescript-eslint/parser": "^5.5.0",
"aws-sdk-client-mock": "^0.5.5",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"chai-http": "^4.2.0",
"codecov": "^3.6.5",
"copyfiles": "^2.4.0",
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-config-airbnb-typescript": "^12.3.1",
"eslint-config-prettier": "^8.1.0",
"eslint-import-resolver-typescript": "^2.4.0",
"eslint-plugin-import": "^2.23.3",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-no-only-tests": "^2.6.0",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-promise": "^4.3.1",
"fishery": "^2.1.0",
"jest": "^27.2.3",
"jwt-decode": "^3.1.2",
"mocha": "^9.1.3",
"mockery": "^2.0.0",
"mongodb-memory-server-global-4.2": "^7.4.4",
"nock": "^13.0.0",
"nodemon": "^2.0.2",
"nyc": "^15.0.1",
"prettier": "^2.2.1",
"prettier-eslint": "^12.0.0",
"proxyquire": "^2.1.3",
"rewire": "^5.0.0",
"shx": "^0.3.2",
"simple-oauth2": "^4.2.0",
"sinon": "^11.1.1",
"sinon-chai": "^3.5.0",
"supertest": "^6.1.3",
"ts-jest": "^27.0.5",
"ts-loader": "^9.2.6",
"ts-node": "^9.1.1",
"tsconfig-paths": "^3.9.0",
"typescript": "^4.2.4"
}
}