-
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) · 1.11 KB
/
Copy pathpackage.json
File metadata and controls
31 lines (31 loc) · 1.11 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
26
27
28
29
30
31
{
"name": "card0r",
"version": "1.0.0",
"description": "Create custom video e-cards for multiple recipients easily",
"private": true,
"workspaces": [
"frontend",
"backend",
"shared",
"remotion"
],
"scripts": {
"dev": "concurrently --names \"FRONTEND,BACKEND\" --prefix-colors \"cyan,magenta\" \"npm run dev:frontend\" \"npm run dev:backend\"",
"dev:frontend": "cd frontend && npm run dev",
"dev:backend": "cd backend && npm run dev",
"build": "npm run build:shared && npm run build:remotion && npm run build:frontend && npm run build:backend",
"build:frontend": "cd frontend && npm run build",
"build:backend": "cd backend && npm run build",
"build:shared": "cd shared && npm run build",
"build:remotion": "cd remotion && npm run bundle",
"remotion:studio": "cd remotion && npm run studio",
"start": "concurrently --names \"FRONTEND,BACKEND\" --prefix-colors \"cyan,magenta\" \"cd frontend && npm run preview\" \"cd backend && npm start\""
},
"devDependencies": {
"canvas": "^3.2.3",
"concurrently": "^10.0.3"
},
"engines": {
"node": ">=20.0.0"
}
}