23 lines
535 B
JSON
23 lines
535 B
JSON
{
|
|
"name": "java-mock",
|
|
"version": "1.0.0",
|
|
"description": "Mock Java backend using Express — simulates JWT auth, API gateway to Python, and conversation history storage",
|
|
"main": "server.js",
|
|
"scripts": {
|
|
"start": "node server.js",
|
|
"dev": "nodemon server.js"
|
|
},
|
|
"dependencies": {
|
|
"axios": "^1.6.8",
|
|
"bcryptjs": "^2.4.3",
|
|
"cors": "^2.8.5",
|
|
"dotenv": "^16.4.5",
|
|
"express": "^4.18.3",
|
|
"jsonwebtoken": "^9.0.2",
|
|
"uuid": "^9.0.1"
|
|
},
|
|
"devDependencies": {
|
|
"nodemon": "^3.1.0"
|
|
}
|
|
}
|