-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 863 Bytes
/
package.json
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
{
"name": "banking-system",
"version": "1.0.0",
"description": "A Banking System Built With Node.js",
"main": "index.js",
"scripts": {
"dev": "nodemon src/index.ts"
},
"repository": {
"type": "git",
"url": "git+/~https://github.com/alxzndr2019/banking-system.git"
},
"keywords": [
"banking",
"finance",
"fintech"
],
"author": "Alex Omiunu",
"license": "ISC",
"bugs": {
"url": "/~https://github.com/alxzndr2019/banking-system/issues"
},
"homepage": "/~https://github.com/alxzndr2019/banking-system#readme",
"devDependencies": {
"@types/express": "^5.0.0",
"nodemon": "^3.1.9",
"ts-node": "^10.9.2",
"typescript": "^5.7.2"
},
"dependencies": {
"express": "^4.21.2",
"mongodb": "^6.12.0",
"pg": "^8.13.1",
"winston": "^3.17.0",
"winston-daily-rotate-file": "^5.0.0"
}
}