-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.39 KB
/
Copy pathpackage.json
File metadata and controls
74 lines (74 loc) · 2.39 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
{
"name": "backend",
"version": "0.2.1",
"private": true,
"scripts": {
"build": "tsc -p tsconfig.json && tsc-alias -p tsconfig.json",
"dev": "tsx watch src/server.ts",
"worker": "tsx watch src/workers/auditWorker.ts",
"start": "node dist/server.js",
"test": "jest --passWithNoTests",
"test:coverage": "jest --coverage",
"lint": "eslint \"src/**/*.ts\" --max-warnings=0",
"mutation": "stryker run",
"migrate:up": "migrate-mongo up -f migrate-mongo-config.js",
"migrate:status": "migrate-mongo status -f migrate-mongo-config.js",
"migrate:down": "migrate-mongo down -f migrate-mongo-config.js"
},
"dependencies": {
"@bull-board/api": "^7.0.0",
"@bull-board/express": "^7.0.0",
"@opentelemetry/api": "^1.9.1",
"@opentelemetry/auto-instrumentations-node": "^0.75.0",
"@opentelemetry/exporter-trace-otlp-http": "^0.217.0",
"@opentelemetry/resources": "^2.7.1",
"@opentelemetry/sdk-node": "^0.217.0",
"@opentelemetry/semantic-conventions": "^1.40.0",
"axe-core": "^4.10.0",
"bullmq": "^5.76.5",
"cookie-parser": "^1.4.7",
"cors": "^2.8.5",
"express": "^5.2.1",
"express-async-errors": "^3.1.1",
"express-rate-limit": "^8.5.1",
"helmet": "^8.1.0",
"ioredis": "^5.4.1",
"ipaddr.js": "^1.9.1",
"mongoose": "^8.5.0",
"pino": "^10.3.1",
"pino-http": "^11.0.0",
"prom-client": "^15.1.3",
"puppeteer": "^24.43.1",
"puppeteer-core": "^24.43.1",
"resend": "^6.12.2",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.1",
"uuid": "^10.0.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@stryker-mutator/core": "^9.6.1",
"@stryker-mutator/jest-runner": "^9.6.1",
"@stryker-mutator/typescript-checker": "^9.6.1",
"@types/cookie-parser": "^1.4.10",
"@types/cors": "^2.8.17",
"@types/express": "^5.0.6",
"@types/jest": "^29.5.12",
"@types/supertest": "^7.2.0",
"@types/swagger-jsdoc": "^6.0.4",
"@types/swagger-ui-express": "^4.1.6",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"eslint": "^8.57.0",
"ioredis-mock": "^8.9.0",
"jest": "^29.7.0",
"migrate-mongo": "^11.0.0",
"mongodb-memory-server": "^11.0.1",
"supertest": "^7.0.0",
"ts-jest": "^29.2.4",
"tsc-alias": "^1.8.10",
"tsx": "^4.16.2",
"typescript": "^5.5.4"
}
}