-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 787 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 787 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
{
"name": "loan-orchestration-backend",
"version": "1.0.0",
"description": "Node.js backend for the Loan Application Management System",
"type": "module",
"main": "server.js",
"scripts": {
"dev": "nodemon server.js",
"start": "node server.js",
"seed:stocks": "node seedData.js",
"seed:loans": "node seedLoanData.js 50",
"seed": "npm run seed:stocks && npm run seed:loans",
"start:seed": "npm run seed && npm start"
},
"keywords": [],
"author": "",
"license": "MIT",
"dependencies": {
"bcryptjs": "^2.4.3",
"cors": "^2.8.5",
"csv-parse": "^5.5.4",
"dotenv": "^16.4.7",
"express": "^4.19.2",
"jsonwebtoken": "^9.0.2",
"pg": "^8.13.1",
"uuid": "^11.0.3"
},
"devDependencies": {
"nodemon": "^3.1.7"
}
}