forked from aid-linkk/aidlink-backend
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
108 lines (108 loc) · 3.42 KB
/
Copy pathpackage.json
File metadata and controls
108 lines (108 loc) · 3.42 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
{
"name": "aidlink-backend",
"version": "1.0.0",
"description": "Production-grade backend for AidLink - Blockchain-powered humanitarian aid platform",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "ts-node-dev --respawn --transpile-only src/index.ts",
"prisma:generate": "prisma generate",
"prisma:migrate": "prisma migrate dev",
"prisma:studio": "prisma studio",
"prisma:seed": "ts-node prisma/seed.ts",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:integration": "jest --testPathPattern=integration",
"test:load": "k6 run tests/load/basic-load-test.js",
"lint": "eslint src --ext .ts",
"lint:fix": "eslint src --ext .ts --fix",
"format": "prettier --write \"src/**/*.ts\"",
"docker:build": "docker-compose build",
"docker:up": "docker-compose up -d",
"docker:down": "docker-compose down",
"docker:logs": "docker-compose logs -f",
"docs:validate": "spectral lint openapi.yaml --ruleset .spectral.yaml",
"docs:build": "node -e \"const fs=require('fs');const yaml=require('js-yaml');const doc=yaml.load(fs.readFileSync('openapi.yaml','utf8'));fs.writeFileSync('openapi.json',JSON.stringify(doc,null,2));console.log('openapi.json written');\""
},
"keywords": [
"blockchain",
"humanitarian-aid",
"stellar",
"soroban",
"fintech"
],
"author": "AidLink Team",
"license": "MIT",
"dependencies": {
"@aws-sdk/client-s3": "^3.1073.0",
"@aws-sdk/s3-request-presigner": "^3.1073.0",
"@azure/storage-blob": "^12.32.0",
"@prisma/client": "^5.10.0",
"bcryptjs": "^2.4.3",
"bullmq": "^5.7.1",
"compression": "^1.7.4",
"cors": "^2.8.5",
"dotenv": "^16.4.1",
"ethers": "^6.11.1",
"express": "^4.18.2",
"express-rate-limit": "^7.1.5",
"express-validator": "^7.0.1",
"handlebars": "^4.7.9",
"helmet": "^7.1.0",
"html-to-text": "^10.0.0",
"ioredis": "^5.3.2",
"jsonwebtoken": "^9.0.2",
"morgan": "^1.10.0",
"multer": "^2.2.0",
"nodemailer": "^6.9.9",
"pdfkit": "^0.19.1",
"redis": "^4.6.12",
"sharp": "^0.35.2",
"socket.io": "^4.6.1",
"soroban-client": "^1.0.0",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.0",
"winston": "^3.11.0",
"ws": "^8.16.0",
"zod": "^3.22.4"
},
"devDependencies": {
"@stoplight/spectral-cli": "^6.16.0",
"@types/bcryptjs": "^2.4.6",
"@types/compression": "^1.7.5",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/html-to-text": "^9.0.4",
"@types/jest": "^29.5.11",
"@types/js-yaml": "^4.0.9",
"@types/jsonwebtoken": "^9.0.5",
"@types/morgan": "^1.9.9",
"@types/multer": "^2.1.0",
"@types/node": "^20.11.16",
"@types/nodemailer": "^6.4.14",
"@types/pdfkit": "^0.17.6",
"@types/supertest": "^6.0.2",
"@types/swagger-jsdoc": "^6.0.4",
"@types/swagger-ui-express": "^4.1.6",
"@types/urijs": "^1.19.26",
"@types/ws": "^8.5.10",
"@typescript-eslint/eslint-plugin": "^6.19.1",
"@typescript-eslint/parser": "^6.19.1",
"eslint": "^8.56.0",
"jest": "^29.7.0",
"js-yaml": "^4.2.0",
"prettier": "^3.2.4",
"prisma": "^5.10.0",
"supertest": "^6.3.4",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.2",
"ts-node-dev": "^2.0.0",
"typescript": "^5.3.3"
},
"engines": {
"node": ">=18.0.0",
"npm": ">=9.0.0"
}
}