-
Notifications
You must be signed in to change notification settings - Fork 66
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 2.95 KB
/
package.json
File metadata and controls
92 lines (92 loc) · 2.95 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
{
"name": "talenttrust-backend",
"version": "0.1.0",
"description": "TalentTrust API Gateway and services with idempotent contract event ingestion",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "ts-node-dev --respawn src/index.ts",
"blue": "cross-env APP_COLOR=blue PORT=3001 ts-node-dev --respawn src/index.ts",
"green": "cross-env APP_COLOR=green PORT=3002 ts-node-dev --respawn src/index.ts",
"router": "cross-env MODE=router PORT=3000 ts-node-dev --respawn src/index.ts",
"deploy:switch-green": "cross-env MODE=deploy ts-node src/deploy.ts switch-green",
"deploy:rollback": "cross-env MODE=deploy ts-node src/deploy.ts rollback",
"deploy:status": "cross-env MODE=deploy ts-node src/deploy.ts status",
"test": "jest",
"test:ci": "jest --ci --coverage --runInBand --silent --detectOpenHandles",
"test:watch": "jest --watch",
"lint": "eslint src",
"lint:fix": "eslint src --fix",
"audit:ci": "npm audit --audit-level=high",
"security:audit": "npm audit --audit-level=high --omit=dev",
"security:audit:json": "npm audit --json --audit-level=high --omit=dev",
"security:remediate:dry": "npm audit fix --dry-run --omit=dev",
"test:docs": "swagger-cli validate docs/openapi.yaml"
},
"engines": {
"node": ">=18"
},
"keywords": ["blockchain", "events", "ingestion", "idempotency", "talenttrust", "api"],
"author": "Talenttrust Team",
"license": "MIT",
"dependencies": {
"@asteasolutions/zod-to-openapi": "^7.3.4",
"@stellar/stellar-sdk": "^13.0.0",
"axios": "^1.7.7",
"better-sqlite3": "^11.5.0",
"bullmq": "^5.71.0",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.21.0",
"helmet": "^7.1.0",
"ioredis": "^5.4.1",
"jsonwebtoken": "^9.0.2",
"pino": "^9.5.0",
"prom-client": "^15.1.3",
"uuid": "^14.0.0",
"winston": "^3.10.0",
"xss": "^1.0.15",
"yaml": "^2.8.3",
"zod": "^3.23.8"
},
"overrides": {
"uuid": "^14.0.0",
"autocannon": {
"uuid": "^9.0.0"
},
"hyperid": {
"uuid": "^9.0.0"
},
"bullmq": {
"uuid": "^9.0.0"
}
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.11",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/ioredis": "^4.28.10",
"@types/jest": "^29.5.12",
"@types/jsonwebtoken": "^9.0.7",
"@types/node": "^22.9.0",
"@types/pino": "^7.0.0",
"@types/supertest": "^6.0.2",
"@types/swagger-ui-express": "^4.1.8",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^8.59.0",
"@typescript-eslint/parser": "^8.59.0",
"autocannon": "^2.0.1",
"axios-mock-adapter": "^2.1.0",
"cross-env": "^7.0.3",
"eslint": "^8.57.0",
"jest": "^29.7.0",
"pino-pretty": "^13.0.0",
"supertest": "^7.0.0",
"swagger-cli": "^4.0.4",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"ts-node-dev": "^2.0.0",
"typescript": "^5.9.3"
}
}