-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.77 KB
/
Copy pathpackage.json
File metadata and controls
57 lines (57 loc) · 1.77 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"name": "@quartz-community/dev-mode",
"version": "0.1.0",
"private": true,
"description": "Unified Quartz v5 development environment",
"type": "module",
"license": "MIT",
"author": "Quartz Community",
"homepage": "https://github.com/quartz-community/dev-mode",
"repository": {
"type": "git",
"url": "https://github.com/quartz-community/dev-mode.git"
},
"packageManager": "pnpm@10.33.4",
"engines": {
"node": ">=22",
"pnpm": ">=10"
},
"scripts": {
"dev-setup": "tsx scripts/setup.ts",
"add-plugin": "tsx scripts/add-plugin.ts",
"remove-plugin": "tsx scripts/remove-plugin.ts",
"sync": "tsx scripts/sync.ts",
"status": "tsx scripts/status.ts",
"validate": "tsx scripts/validate.ts",
"migrate-to-npm": "tsx scripts/migrate-to-npm.ts",
"deploy-changesets": "tsx scripts/deploy-changesets.ts",
"generate-turbo-graph": "tsx scripts/generate-turbo-graph.ts",
"build": "turbo run build",
"typecheck": "turbo run typecheck",
"test": "turbo run test",
"lint": "turbo run lint",
"check": "turbo run typecheck lint format:check test",
"e2e:build": "tsx e2e/helpers/build-fixture.ts base-url-site",
"e2e:test": "playwright test --config e2e/playwright.config.ts",
"e2e": "pnpm e2e:build && pnpm e2e:test",
"test:unit": "vitest run"
},
"devDependencies": {
"@playwright/test": "1.61.1",
"esbuild": "^0.27.0",
"github-slugger": "^2.0.0",
"hast-util-to-jsx-runtime": "^2.3.6",
"preact": "^10.28.2",
"preact-render-to-string": "^6.6.5",
"prettier": "^3.8.1",
"sass": "^1.97.0",
"serve": "^14.2.6",
"tsx": "^4.21.0",
"turbo": "^2.5.0",
"typescript": "^5.9.3",
"unified": "^11.0.5",
"vfile": "^6.0.3",
"vitest": "^2.1.9",
"yaml": "^2.8.0"
}
}