forked from VolunChain/VolunChain-Backend
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 3.03 KB
/
package.json
File metadata and controls
97 lines (97 loc) · 3.03 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
{
"name": "volunchain-backend",
"version": "1.0.0",
"type": "commonjs",
"main": "dist/index.js",
"scripts": {
"test:dto": "jest --runInBand src/modules/auth/__tests__/dto --detectOpenHandles",
"test:dto:independent": "jest --runInBand src/modules/auth/__tests__/dto --detectOpenHandles",
"dev": "ts-node-dev src/index.ts",
"build": "tsc",
"start": "node dist/index.js",
"test": "jest --runInBand",
"test:sqlite": "DB_TYPE=sqlite jest --runInBand",
"test:postgres": "DB_TYPE=postgres jest --runInBand",
"test:api-versioning": "ts-node scripts/test-api-versioning.ts",
"test:all-endpoints": "ts-node scripts/test-all-endpoints.ts",
"test:manual": "ts-node scripts/manual-endpoint-test.ts",
"validate:api-versioning": "ts-node scripts/validate-api-versioning.ts",
"test:quick": "ts-node scripts/quick-test.ts",
"prepare": "husky",
"pre-commit": "lint-staged",
"s3:setup": "ts-node src/utils/setup-s3-bucket.ts"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.798.0",
"@aws-sdk/s3-request-presigner": "^3.798.0",
"@prisma/client": "^6.4.1",
"@stellar/stellar-sdk": "^13.3.0",
"@supabase/supabase-js": "^2.54.0",
"@types/multer": "^1.4.12",
"@types/swagger-jsdoc": "^6.0.4",
"@types/swagger-ui-express": "^4.1.7",
"@types/uuid": "^10.0.0",
"axios": "^1.7.9",
"backblaze-b2": "^1.7.0",
"bcryptjs": "^3.0.2",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.1",
"cors": "^2.8.5",
"date-fns": "^4.1.0",
"dotenv": "^16.4.7",
"express": "^4.21.2",
"express-rate-limit": "^7.5.0",
"express-validator": "^7.2.0",
"jsonwebtoken": "^9.0.2",
"multer": "^1.4.5-lts.2",
"node-cron": "^3.0.3",
"nodemailer": "^6.10.0",
"pdf-lib": "^1.17.1",
"pg": "^8.13.1",
"qrcode": "^1.5.4",
"redis": "^4.7.0",
"reflect-metadata": "^0.2.2",
"soroban-client": "^1.0.1",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.1",
"typeorm": "^0.3.21",
"uuid": "^11.1.0",
"winston": "^3.17.0"
},
"devDependencies": {
"@eslint/js": "^9.19.0",
"@types/backblaze-b2": "^1.5.6",
"@types/cors": "^2.8.17",
"@types/express": "^5.0.0",
"@types/express-rate-limit": "^5.1.3",
"@types/jest": "^29.5.14",
"@types/jsonwebtoken": "^9.0.9",
"@types/node": "^22.15.3",
"@types/node-cron": "^3.0.11",
"@types/nodemailer": "^6.4.17",
"@types/qrcode": "^1.5.5",
"@types/redis": "^4.0.10",
"@types/supertest": "^6.0.2",
"@typescript-eslint/eslint-plugin": "^8.22.0",
"@typescript-eslint/parser": "^8.22.0",
"eslint": "^9.30.0",
"globals": "^15.14.0",
"husky": "^9.1.7",
"jest": "^29.7.0",
"lint-staged": "^15.4.3",
"prettier": "^3.4.2",
"prisma": "^6.4.1",
"sqlite3": "^5.1.7",
"supertest": "^7.1.0",
"ts-jest": "^29.3.0",
"ts-node-dev": "^2.0.0",
"typescript": "^5.7.2",
"typescript-eslint": "^8.22.0"
},
"lint-staged": {
"src/**/*.{js,ts}": [
"eslint --fix",
"prettier --write"
]
}
}