forked from Veloxous/Backend
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.28 KB
/
Copy pathpackage.json
File metadata and controls
49 lines (49 loc) · 1.28 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
{
"name": "veloxous-backend",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "ts-node src/index.ts",
"build": "tsc",
"start": "node dist/index.js",
"test": "jest",
"lint": "eslint src/",
"lint:fix": "eslint src/ --fix",
"format": "prettier --write \"src/**/*.ts\"",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.1116.0",
"@aws-sdk/s3-presigned-post": "^3.1117.0",
"@aws-sdk/s3-request-presigner": "^3.1116.0",
"@stellar/stellar-sdk": "^12.0.0",
"@supabase/supabase-js": "^2.43.0",
"axios": "^1.18.1",
"bullmq": "^5.12.0",
"cors": "^2.8.6",
"dotenv": "^17.4.2",
"express": "^4.19.2",
"helmet": "^8.0.0",
"jsonwebtoken": "^9.0.3",
"nodemailer": "^6.9.13",
"pg": "^8.22.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/cors": "^2.8.19",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.0",
"@types/jsonwebtoken": "^9.0.10",
"@types/node": "^20.12.11",
"@types/nodemailer": "^8.0.1",
"@types/pg": "^8.20.0",
"@types/supertest": "^6.0.3",
"eslint": "^10.8.0",
"jest": "^29.7.0",
"prettier": "^3.2.5",
"supertest": "^6.3.4",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.2",
"typescript": "^5.4.5"
}
}