-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 896 Bytes
/
Copy pathpackage.json
File metadata and controls
35 lines (35 loc) · 896 Bytes
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
{
"name": "ptdt-settlement-api",
"version": "0.1.0",
"description": "PTDT Settlement API - Production-Ready Backend for Tokenized Ride-Sharing",
"main": "dist/index.ts",
"scripts": {
"dev": "ts-node src/index.ts",
"build": "tsc",
"start": "node dist/index.js",
"test": "jest",
"lint": "eslint src/**/*.ts"
},
"dependencies": {
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"ethers": "^6.7.1",
"express": "^4.18.2",
"express-rate-limit": "^7.0.0",
"helmet": "^7.0.0",
"joi": "^17.10.0",
"jsonwebtoken": "^9.0.2",
"winston": "^3.10.0"
},
"devDependencies": {
"@prisma/client": "^6.19.2",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.17",
"@types/jsonwebtoken": "^9.0.10",
"@types/node": "^20.4.5",
"jest": "^29.6.2",
"prisma": "^6.19.2",
"ts-node": "^10.9.1",
"typescript": "^5.1.6"
}
}