forked from Pi-Defi-world/acbu-backend
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.48 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 2.48 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
{
"name": "acbu-backend",
"version": "1.0.0",
"description": "ACBU Backend API Server",
"main": "dist/index.js",
"scripts": {
"dev": "nodemon",
"build": "tsc",
"start": "node dist/index.js",
"lint": "eslint src --ext .ts",
"lint:fix": "eslint src --ext .ts --fix",
"format": "prettier --write \"src/**/*.ts\"",
"format:check": "prettier --check \"src/**/*.ts\"",
"test": "jest --passWithNoTests",
"prisma:generate": "prisma generate",
"prisma:migrate": "prisma migrate dev",
"prisma:migrate:deploy": "prisma migrate deploy",
"prisma:push": "prisma db push",
"prisma:studio": "prisma studio",
"prisma:seed": "ts-node prisma/seed.ts",
"backfill:org-limits": "ts-node prisma/backfillOrgTransactionContext.ts",
"stellar:create-wallet": "ts-node scripts/create-stellar-wallet.ts",
"compute:basket-weights": "ts-node scripts/compute-basket-weights.ts",
"postinstall": "prisma generate"
},
"keywords": [
"acbu",
"stablecoin",
"africa",
"fintech"
],
"author": "",
"license": "Apache-2.0",
"dependencies": {
"@aws-sdk/client-s3": "^3.975.0",
"@aws-sdk/s3-request-presigner": "^3.975.0",
"@prisma/client": "^5.19.0",
"@prisma/extension-accelerate": "^3.0.1",
"amqplib": "^0.10.3",
"axios": "^1.6.0",
"bcryptjs": "^3.0.3",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.18.2",
"express-rate-limit": "^7.1.5",
"helmet": "^7.1.0",
"jsonwebtoken": "^9.0.2",
"mongodb": "^6.3.0",
"openai": "^6.32.0",
"otplib": "^12.0.1",
"qrcode": "^1.5.4",
"stellar-sdk": "^11.2.2",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.0",
"winston": "^3.11.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/amqplib": "^0.10.8",
"@types/bcrypt": "^5.0.2",
"@types/bcryptjs": "^3.0.0",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.11",
"@types/jsonwebtoken": "^9.0.5",
"@types/node": "^20.11.5",
"@types/qrcode": "^1.5.6",
"@types/swagger-jsdoc": "^6.0.1",
"@types/swagger-ui-express": "^4.1.6",
"@typescript-eslint/eslint-plugin": "^6.19.1",
"@typescript-eslint/parser": "^6.19.1",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"jest": "^29.7.0",
"nodemon": "^3.0.3",
"prettier": "^3.2.4",
"prisma": "^5.19.0",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
}
}