-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.82 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.82 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
{
"name": "@mdcms/source",
"version": "0.0.0",
"license": "MIT",
"scripts": {
"build": "bun nx run-many -t build",
"typecheck": "bun nx run-many -t typecheck",
"quality": "bun run format:check && bun run typecheck",
"unit": "bun nx run-many -t test && bun run studio:embed:smoke",
"integration": "bun run compose:health && bun run migrate:check && bun run integration:content",
"integration:content": "bash scripts/content-api-integration-check.sh",
"ci:required": "bun run quality && bun run unit && bun run integration",
"check": "bun nx run-many -t build typecheck",
"dev": "bun nx run-many -t dev --projects studio,server,studio-example",
"studio:review:runtime": "bun --conditions @mdcms/source apps/studio-review/scripts/build-review-runtime.ts",
"studio:review:dev": "sh -lc 'bun run studio:review:runtime && bun --cwd apps/studio-review dev'",
"compose:dev": "docker compose -f docker-compose.dev.yml up",
"compose:dev:down": "docker compose -f docker-compose.dev.yml down",
"studio:embed:smoke": "bash scripts/studio-embed-smoke-check.sh",
"compose:health": "bash scripts/compose-health-check.sh",
"migrate:check": "bash scripts/migration-startup-check.sh",
"format": "bun x prettier --write .",
"format:check": "bun x prettier --check .",
"changeset": "changeset",
"version-packages": "changeset version",
"release": "bun run build && changeset publish"
},
"private": true,
"dependencies": {},
"devDependencies": {
"@changesets/cli": "^2.30.0",
"@nx/js": "22.5.1",
"@swc-node/register": "~1.11.1",
"@swc/core": "~1.15.5",
"@swc/helpers": "~0.5.18",
"@types/node": "20.19.9",
"nx": "22.5.1",
"prettier": "~3.6.2",
"tslib": "^2.3.0",
"typescript": "~5.9.2"
},
"workspaces": [
"apps/*",
"packages/*"
]
}