-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 4.89 KB
/
package.json
File metadata and controls
92 lines (92 loc) · 4.89 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "@prisma-next/monorepo",
"version": "0.8.0",
"private": true,
"type": "module",
"packageManager": "pnpm@10.27.0+sha512.72d699da16b1179c14ba9e64dc71c9a40988cbdc65c264cb0e489db7de917f20dcf4d64d8723625f2969ba52d4b7e2a1170682d9ac2a5dcaeaab732b7e16f04a",
"scripts": {
"build": "turbo run build",
"dev": "turbo watch build --filter='./packages/**' --continue=dependencies-successful --output-logs=new-only",
"dev:all": "turbo watch build --continue=dependencies-successful --output-logs=new-only",
"format": "pnpm biome format --write .",
"test": "turbo run test --continue",
"test:all": "pnpm test:packages && pnpm test:examples && pnpm test:integration && pnpm test:e2e",
"test:packages": "turbo run build --filter='!./examples/**' --filter='!./test/**' && vitest run",
"test:examples": "turbo run test --filter='./examples/**' --continue",
"test:e2e": "pnpm --filter @prisma-next/e2e-tests test",
"test:integration": "pnpm --filter @prisma-next/integration-tests test",
"test:journeys": "pnpm --filter @prisma-next/integration-tests test:journeys",
"test:vite-plugin": "pnpm --filter @prisma-next/integration-tests test:vite-plugin",
"test:coverage": "turbo run test:coverage",
"coverage:report": "node scripts/coverage-report.mjs",
"coverage:packages": "turbo run test:coverage --filter='!./examples/**' --filter='!./test/**'",
"lint": "turbo run lint",
"lint:fix": "pnpm biome check --write .",
"lint:fix:unsafe": "pnpm biome check --write --unsafe .",
"lint:packages": "turbo run lint --filter='!./examples/**'",
"lint:examples": "turbo run lint --filter='./examples/**'",
"lint:deps": "depcruise --config dependency-cruiser.config.mjs packages && node scripts/lint-framework-target-imports.mjs && node scripts/lint-app-space-id.mjs",
"lint:rules": "node scripts/validate-rules.mjs",
"lint:rules:footprint": "node scripts/rules-footprint.mjs --check",
"rules:footprint": "node scripts/rules-footprint.mjs",
"lint:docs": "node scripts/validate-package-readmes.mjs",
"lint:manifests": "node scripts/validate-package-manifests.mjs",
"lint:workflows": "node scripts/lint-workflow-triggers.mjs",
"test:scripts": "node --test scripts/lint-workflow-triggers.test.mjs scripts/determine-version-utils.test.ts scripts/check-upgrade-coverage.test.mjs scripts/set-version-utils.test.ts scripts/check-publish-deps-pn-pins.test.mjs",
"bump-minor": "node scripts/bump-minor.ts",
"check:publish-deps": "node scripts/check-publish-deps.mjs",
"check:upgrade-coverage": "node scripts/check-upgrade-coverage.mjs",
"fixtures:emit": "pnpm --filter @prisma-next/sql-builder --filter @prisma-next/sql-orm-client --filter @prisma-next/e2e-tests --filter @prisma-next/e2e-sqlite-tests --filter @prisma-next/integration-tests --filter prisma-next-demo --filter prisma-next-cloudflare-worker -r emit",
"fixtures:check": "pnpm fixtures:emit && git diff --exit-code -- packages/2-sql/4-lanes/sql-builder/test/fixtures/generated/ packages/3-extensions/sql-orm-client/test/fixtures/generated/ test/e2e/framework/test/fixtures/generated/ test/e2e/sqlite/test/fixtures/generated/ test/integration/test/fixtures/ examples/prisma-next-demo/src/prisma/contract.json examples/prisma-next-demo/src/prisma/contract.d.ts examples/prisma-next-cloudflare-worker/src/prisma/contract.json examples/prisma-next-cloudflare-worker/src/prisma/contract.d.ts",
"typecheck": "turbo run typecheck",
"typecheck:all": "pnpm typecheck && pnpm typecheck:examples",
"typecheck:packages": "turbo run typecheck --filter='!./examples/**'",
"typecheck:examples": "turbo run typecheck --filter='./examples/**'",
"record": "turbo run record --filter=@prisma-next/cli --",
"clean": "turbo run clean",
"prepare": "husky",
"setup:contrib-skills": "node scripts/setup-contrib-skills.mjs",
"postinstall": "node scripts/setup-contrib-skills.mjs"
},
"devDependencies": {
"@biomejs/biome": "2.4.14",
"@prisma-next/tsconfig": "workspace:0.8.0",
"@types/node": "catalog:",
"@vitest/coverage-v8": "^4.0.17",
"dependency-cruiser": "^16.3.3",
"gray-matter": "catalog:",
"husky": "^9.1.7",
"lint-staged": "^16.2.6",
"pathe": "^2.0.3",
"pkg-pr-new": "0.0.71",
"skills": "^1.5.7",
"tslib": "^2.8.1",
"tsx": "^4.20.6",
"turbo": "^2.6.1",
"typescript": "catalog:",
"vitest": "catalog:"
},
"engines": {
"node": ">=24"
},
"pnpm": {
"overrides": {
"arktype": "2.1.29",
"hono": "4.11.4",
"js-yaml": "3.14.2",
"lodash": "4.17.23",
"minimatch@3.1.2": "3.1.3",
"minimatch@9.0.5": "9.0.7",
"rollup": "4.59.0"
}
},
"lint-staged": {
"*.{ts,tsx,js,jsx,mjs,json,jsonc,css}": [
"biome format --write --no-errors-on-unmatched",
"biome check --write --no-errors-on-unmatched"
],
"*.{ts,tsx,js,jsx}": [
"node scripts/lint-deps-focused.mjs"
]
}
}