-
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) · 847 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 847 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": "movieclub",
"version": "1.0.0",
"description": "This template provides a minimal setup to get React working in Vite with HMR and some ESLint rules.",
"homepage": "https://github.com/SuperMo0/MoviesClub#readme",
"bugs": {
"url": "https://github.com/SuperMo0/MoviesClub/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SuperMo0/MoviesClub.git"
},
"license": "ISC",
"author": "",
"type": "module",
"main": "index.js",
"engines": {
"node": "24.12.0"
},
"workspaces": [
"Backend",
"Frontend",
"Shared"
],
"scripts": {
"dev:backend": "npm run dev --prefix Backend",
"dev:frontend": "npm run dev --prefix Frontend",
"build": "npm run build --prefix Backend && npm run build --prefix Frontend",
"start": "npm run start --prefix Backend"
}
}