-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
25 lines (25 loc) · 1.37 KB
/
Copy pathpackage.json
File metadata and controls
25 lines (25 loc) · 1.37 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
{
"name": "what-flix",
"version": "1.0.0",
"description": "What-flix is a personalized movie recommendation system that helps users quickly find films they are likely to enjoy across multiple streaming platforms. The application allows users to create accounts, select the streaming services they subscribe to, rank genres, and rate movies they have seen. Based on these preferences, What-flix generates tailored recommendations using factors such as genre, popularity, similarity to liked movies, actors and directors. Each movie listing includes a trailer link and information on which platforms offer the film. The frontend uses React and the backend uses Node.js with Express along with MongoDB for the database. The application is deployed on Render.",
"main": "index.js",
"scripts": {
"install-all": "pip install -r requirements.txt && npm install && npm install --prefix backend && npm install --prefix frontend && npm audit fix",
"frontend": "npm run serve --prefix frontend",
"backend": "npm run start --prefix backend",
"build-frontend": "npm run build --prefix frontend"
},
"author": "",
"license": "ISC",
"dependencies": {
"bcrypt": "^6.0.0",
"csv-parse": "^6.1.0",
"lucide-react": "^0.553.0",
"react-router-dom": "^7.9.4",
"uuid": "^13.0.0"
},
"devDependencies": {
"@types/bcrypt": "^6.0.0",
"@types/cors": "^2.8.19"
}
}