-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 865 Bytes
/
Copy pathpackage.json
File metadata and controls
28 lines (28 loc) · 865 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
{
"name": "movie-recommender",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "node ./node_modules/next/dist/bin/next dev -H 0.0.0.0",
"dev:frontend": "node ./node_modules/next/dist/bin/next dev -H 0.0.0.0",
"dev:backend": "python -m uvicorn backend.main:app --reload --host 0.0.0.0 --port 8000",
"build": "node ./node_modules/next/dist/bin/next build",
"lint": "eslint .",
"start": "node ./node_modules/next/dist/bin/next start -H 0.0.0.0"
},
"dependencies": {
"next": "^14.2.30",
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"devDependencies": {
"@eslint/js": "^9.13.0",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"eslint": "^9.13.0",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-hooks": "^5.0.0",
"globals": "^15.11.0"
}
}