-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (40 loc) · 1.06 KB
/
Copy pathpackage.json
File metadata and controls
41 lines (40 loc) · 1.06 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
{
"name": "virtual-wallet-api",
"version": "1.0.0",
"description": "Virtual Wallet API - Payment system with JWT auth and atomic transactions",
"main": "src/server.js",
"scripts": {
"start": "node src/server.js",
"dev": "nodemon src/server.js",
"test": "jest --detectOpenHandles",
"test:watch": "jest --watch",
"prisma:generate": "prisma generate",
"prisma:migrate": "prisma migrate dev",
"prisma:push": "prisma db push"
},
"prisma": {
"schema": "src/prisma/schema.prisma"
},
"keywords": ["fintech", "payment", "wallet", "api"],
"author": "",
"license": "ISC",
"dependencies": {
"express": "^4.18.2",
"prisma": "^5.0.0",
"@prisma/client": "^5.0.0",
"bcryptjs": "^2.4.3",
"jsonwebtoken": "^9.0.0",
"dotenv": "^16.0.3",
"cors": "^2.8.5",
"helmet": "^7.0.0",
"morgan": "^1.10.0",
"express-rate-limit": "^6.7.0",
"swagger-ui-express": "^4.6.3",
"swagger-jsdoc": "^6.2.8"
},
"devDependencies": {
"nodemon": "^2.0.22",
"jest": "^29.5.0",
"supertest": "^6.3.3"
}
}