-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 3.76 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 3.76 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
{
"name": "@prisma-next/monorepo",
"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 test --filter='!./examples/**' --filter='!./test/**' --continue",
"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: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",
"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",
"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 -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",
"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"
},
"devDependencies": {
"@biomejs/biome": "2.3.11",
"@prisma-next/tsconfig": "workspace:*",
"@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",
"tslib": "^2.8.1",
"tsx": "^4.20.6",
"turbo": "^2.6.1",
"typescript": "catalog:",
"vitest": "catalog:"
},
"engines": {
"node": ">=24"
},
"pnpm": {
"overrides": {
"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"
]
}
}