-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.61 KB
/
Copy pathpackage.json
File metadata and controls
49 lines (49 loc) · 1.61 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
{
"name": "git-native-cms",
"version": "0.0.0",
"private": true,
"description": "Git-native visual CMS for Next.js and Astro.",
"license": "Apache-2.0",
"type": "module",
"packageManager": "pnpm@11.0.0",
"engines": {
"node": ">=22.12.0"
},
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev --parallel",
"lint": "eslint .",
"typecheck": "turbo run typecheck",
"test": "vitest run",
"test:integration": "vitest run --config vitest.integration.config.ts",
"test:watch": "vitest",
"test:e2e": "turbo run build --filter=@git-native-cms/playground-next --filter=@git-native-cms/playground-astro && playwright test",
"architecture": "dependency-cruiser packages --config dependency-cruiser.cjs",
"budgets": "node tooling/scripts/check-bundle-budgets.mjs",
"check": "pnpm lint && pnpm typecheck && pnpm test && pnpm architecture && pnpm build && pnpm budgets",
"changeset": "changeset",
"version-packages": "changeset version",
"release": "changeset publish",
"cms": "tsx packages/cli/src/bin.ts"
},
"devDependencies": {
"@changesets/cli": "latest",
"@eslint/js": "latest",
"@playwright/test": "latest",
"@types/node": "latest",
"@types/react": "latest",
"@types/react-dom": "latest",
"dependency-cruiser": "latest",
"eslint": "latest",
"eslint-plugin-boundaries": "latest",
"fast-check": "latest",
"jose": "catalog:",
"prettier": "latest",
"testcontainers": "latest",
"tsx": "latest",
"turbo": "latest",
"typescript": "^6.0.0",
"typescript-eslint": "latest",
"vitest": "latest"
}
}