-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 977 Bytes
/
Copy pathpackage.json
File metadata and controls
32 lines (32 loc) · 977 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
32
{
"name": "zflix-workspace",
"private": true,
"version": "1.0.0",
"author": "ImRoodyDev",
"license": "CC-BY-NC-4.0",
"workspaces": [
"packages/*"
],
"scripts": {
"stop:redis": "wsl redis-cli shutdown",
"start:redis": "wsl redis-server",
"start": "run-p start:server start:app",
"start:dev": "run-p start:dev:server start:dev:app",
"start:server": "npm --workspace server run start",
"start:dev:server": "npm --workspace server run start:dev",
"start:app": "npm --workspace app run start",
"build": "npm run build --workspaces --if-present",
"build:server": "npm --workspace server run build",
"build:app:web": "npm --workspace app run build:web",
"lint": "npm run lint --workspaces --if-present",
"lint:fix": "npm run lint:fix --workspaces --if-present",
"typecheck": "npm run typecheck --workspaces --if-present"
},
"overrides": {
"react": "19.0.0",
"react-dom": "19.0.0"
},
"devDependencies": {
"npm-run-all": "^4.1.5"
}
}