-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
38 lines (38 loc) · 1.2 KB
/
package.json
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
34
35
36
37
38
{
"name": "total-typescript-monorepo",
"version": "1.0.0",
"type": "module",
"packageManager": "[email protected]",
"description": "",
"engines": {
"node": "=20"
},
"private": true,
"scripts": {
"dev": "turbo watch build lint test",
"ci": "turbo build test lint",
"build": "turbo build",
"release": "pnpm run ci && changeset publish",
"write": "turbo watch dev --filter=shot-slash --filter=@total-typescript/twoslash-preview-server --filter=written-content",
"make-video": "turbo watch dev --filter=remotion-code-hike --filter=sync-current-markdown-file-to-remotion --filter=source-to-code-samples --filter=record-narration",
"new": "(cd apps/written-content && pnpm run new)",
"scratch": "(cd apps/written-content && pnpm run scratch)",
"manage": "turbo watch dev --filter=written-content-manager"
},
"keywords": [],
"author": "Matt Pocock",
"license": "ISC",
"dependencies": {
"@changesets/cli": "^2.26.1",
"@total-typescript/tsconfig": "^1.0.3",
"@types/node": "^20.12.10",
"prettier": "^3.2.5",
"tsx": "^4.16.2",
"turbo": "^2.0.1",
"typescript": "5.5.4",
"vitest": "^2.0.0"
},
"resolutions": {
"typescript": "5.5.4"
}
}