Add dependencies and test script to recommendation engine

This commit is contained in:
Alexa Amundson
2026-03-11 13:40:20 -05:00
parent d0f3bc7176
commit ba034d6b04

View File

@@ -1,12 +1,17 @@
{ {
"name": "recommendation-engine", "name": "blackstream-recommendation-engine",
"version": "1.0.0", "version": "1.0.0",
"description": "Recommendation engine microservice for BlackStream", "description": "Content recommendation engine with collaborative filtering and similarity scoring",
"main": "index.js", "main": "index.js",
"scripts": { "scripts": {
"start": "node index.js" "start": "node index.js",
"test": "node --test index.test.js"
}, },
"dependencies": { "dependencies": {
"express": "^4.18.2" "cors": "^2.8.5",
"express": "^4.21.0"
},
"engines": {
"node": ">=20.0.0"
} }
} }