forked from PayStell/paystell-backend
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.43 KB
/
Copy pathpackage.json
File metadata and controls
87 lines (87 loc) · 2.43 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
{
"name": "paystell-backend",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"dev": "ts-node-dev --respawn src/index.ts",
"build": "tsc",
"start": "node dist/index.js",
"test": "jest",
"lint": "eslint 'src/**/*.ts'",
"format:check": "prettier --check 'src/**/*.ts'",
"format:fix": "prettier --write 'src/**/*.ts'",
"test:coverage": "jest --coverage",
"migration:run": "npx typeorm-ts-node-commonjs migration:run -d src/config/db.ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"dependencies": {
"auth0-js": "^9.28.0",
"@aws-sdk/client-s3": "^3.777.0",
"@types/multer": "^1.4.12",
"axios": "^1.8.1",
"bcryptjs": "^2.4.3",
"bull": "^4.16.5",
"class-validator": "^0.14.1",
"cookie-parser": "^1.4.7",
"cors": "^2.8.5",
"dotenv": "^16.4.7",
"express": "^4.21.2",
"express-async-handler": "^1.2.0",
"express-openid-connect": "^2.18.0",
"express-rate-limit": "^7.5.0",
"ioredis": "^5.6.0",
"jsonwebtoken": "^9.0.2",
"morgan": "^1.10.0",
"multer": "^1.4.5-lts.2",
"nanoid": "^5.1.2",
"node-cron": "^3.0.3",
"nodemailer": "^6.10.0",
"parse5": "^7.2.1",
"pg": "^8.13.1",
"rate-limit-redis": "^4.2.0",
"redis": "^4.7.0",
"reflect-metadata": "^0.2.2",
"speakeasy": "^2.0.0",
"uuid": "^9.0.1",
"winston": "^3.11.0",
"zod": "^3.24.1"
},
"devDependencies": {
"@eslint/js": "^9.21.0",
"@sentry/node": "^7.101.1",
"@types/bcrypt": "^5.0.2",
"@types/bcryptjs": "^2.4.6",
"@types/cookie-parser": "^1.4.8",
"@types/cors": "^2.8.17",
"@types/express": "^5.0.0",
"@types/jest": "^29.5.14",
"@types/jsonwebtoken": "^9.0.8",
"@types/morgan": "^1.9.9",
"@types/nanoid": "^2.1.0",
"@types/node": "^22.10.7",
"@types/node-cron": "^3.0.11",
"@types/nodemailer": "^6.4.17",
"@types/redis": "^4.0.11",
"@types/speakeasy": "^2.0.10",
"@types/supertest": "^6.0.3",
"@types/uuid": "^10.0.0",
"@types/winston": "^2.4.4",
"@typescript-eslint/eslint-plugin": "^8.26.1",
"@typescript-eslint/parser": "^8.26.1",
"bcrypt": "^5.1.1",
"dd-trace": "^4.26.0",
"eslint": "^9.21.0",
"globals": "^16.0.0",
"jest": "^29.7.0",
"prettier": "^3.5.2",
"supertest": "^7.1.0",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"ts-node-dev": "^2.0.0",
"typeorm": "^0.3.21",
"typescript": "^5.8.2"
}
}