forked from tinacms/tinacms
-
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) · 2.15 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 2.15 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": "root",
"private": true,
"version": "0.0.0",
"workspaces": [
"packages/@tinacms/*",
"examples/*/*",
"packages/[^@]*"
],
"scripts": {
"dev": "pnpm watch",
"watch": "pnpm run build && pnpm --filter=\"./packages/@tinacms/scripts\" run watch",
"build": "turbo run build --filter=\"./packages/**\"",
"diff-tina-lock": "pnpm -r --filter='{./**}' --workspace-concurrency=1 run --if-present diff-tina-lock",
"update-tina-lock": "pnpm -r --filter='{./**}' --workspace-concurrency=1 run --if-present update-tina-lock",
"test": "turbo run test --filter=\"./packages/**\"",
"lint:packages": "pnpm --filter './packages/**' --no-bail exec pnpm dlx publint --strict",
"test:packages": "vitest run tests/build-verification.test.ts --reporter=verbose && pnpm run lint:packages",
"types": "turbo run types --filter=\"./packages/**\"",
"test:dev": "cd playwright/tina-playwright && npx playwright test --ui",
"test:e2e": "cd playwright/tina-playwright && npx playwright test",
"version": "pnpm exec changeset version",
"version:snapshot": "pnpm exec changeset version --snapshot",
"publish": "pnpm publish -r --no-git-checks --access public && pnpm exec changeset tag",
"publish:beta": "pnpm publish -r --tag beta --no-git-checks --access public",
"publish:dev": "pnpm publish -r --tag dev --no-git-checks --access public",
"push-tags": "pnpm exec changeset tag && git pull && git push --follow-tags",
"lint": "biome lint ./packages ./examples",
"format": "biome format --write ./packages/ ./examples/"
},
"devDependencies": {
"@biomejs/biome": "catalog:",
"@changesets/changelog-github": "catalog:",
"@changesets/cli": "catalog:",
"@types/jest": "^29.5.14",
"@types/node": "^22.19.17",
"vitest": "^2.1.9",
"@types/picomatch": "catalog:",
"picomatch": "catalog:",
"pretty-quick": "catalog:",
"turbo": "catalog:",
"typescript": "^5.7.3",
"vite": "^4.5.14"
},
"packageManager": "pnpm@9.15.9",
"dependencies": {
"highlight.js": "catalog:",
"react-colorful": "catalog:"
},
"pnpm": {
"overrides": {
"@clerk/clerk-js>react": "19.2.3",
"@clerk/clerk-js>react-dom": "19.2.3",
"@clerk/backend>react": "19.2.3"
}
}
}