-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 863 Bytes
/
Copy pathpackage.json
File metadata and controls
33 lines (33 loc) · 863 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
33
{
"name": "lesson-studio",
"version": "0.2.0",
"private": true,
"description": "Local-first Mac tool for recording narrated lesson videos",
"type": "module",
"workspaces": [
"shared",
"server",
"app"
],
"scripts": {
"dev": "concurrently -n server,app -c blue,green \"npm run dev -w server\" \"npm run dev -w app\"",
"start": "npm run build -w app && LESSON_STUDIO_SERVE_APP=1 npm run dev -w server",
"doctor": "tsx server/src/doctor-cli.ts",
"test": "vitest run",
"typecheck": "tsc -b shared server app",
"package:build": "node scripts/package-build.mjs"
},
"engines": {
"node": ">=20"
},
"devDependencies": {
"concurrently": "^9.1.0",
"tsx": "^4.19.0",
"typescript": "^5.6.0",
"vitest": "^2.1.0"
},
"allowScripts": {
"esbuild@0.28.1": true,
"esbuild@0.21.5": true
}
}