-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 2.28 KB
/
Copy pathpackage.json
File metadata and controls
52 lines (52 loc) · 2.28 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
{
"name": "prisma-composer-ws",
"private": true,
"type": "module",
"packageManager": "pnpm@10.27.0",
"scripts": {
"setup:env": "bun scripts/setup-env.ts",
"build": "turbo run build",
"dev": "turbo watch build",
"format": "biome format --write .",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"lint:fix:unsafe": "biome check --write --unsafe .",
"lint:casts": "node scripts/lint-casts.mjs",
"rules:sync": "node scripts/sync-agent-rules.mjs",
"lint:rules:symlinks": "node scripts/sync-agent-rules.mjs --check",
"check:publish-deps": "node scripts/check-publish-deps.mjs",
"check:npm-effect-resolution": "node scripts/check-npm-effect-resolution.mjs",
"check:cli-engine-pin": "node scripts/check-cli-engine-pin.mjs",
"check:skill-packaging": "node scripts/check-skill-packaging.mjs",
"check:orm-pins": "node scripts/check-orm-pins.mjs",
"check:family-static-graph": "node scripts/check-family-static-graph.mjs",
"check:floor-imports": "node scripts/check-floor-imports.mjs",
"bump-minor": "node scripts/bump-minor.ts",
"test": "turbo run test",
"test:scripts": "node --test scripts/*.test.mjs scripts/*.test.ts",
"test:conformance:local": "pnpm --filter @internal/streams test:conformance:local",
"typecheck": "turbo run typecheck",
"clean": "turbo run clean",
"prepare": "husky && skills add prisma/skills --skill \"*\" --agent universal claude-code -y && skills add ./skills-contrib --skill \"*\" --agent universal claude-code -y && node scripts/sync-agent-rules.mjs",
"lint:deps": "depcruise --config dependency-cruiser.config.mjs packages examples test website && node scripts/lint-architecture-coverage.mjs && node scripts/lint-publishable-location.mjs && node scripts/lint-framework-vocabulary.mjs && node scripts/lint-orm-pins.mjs && node scripts/lint-contract-snapshots.mjs"
},
"devDependencies": {
"@biomejs/biome": "2.5.4",
"@clack/prompts": "^1.7.0",
"dependency-cruiser": "^17.4.3",
"husky": "^9.1.7",
"lint-staged": "^17.0.7",
"pathe": "^2.0.3",
"pkg-pr-new": "0.0.78",
"skills": "^1.5.17",
"turbo": "^2.10.5",
"typescript": "^6.0.3"
},
"pnpm": {
"onlyBuiltDependencies": [
"prisma",
"@prisma/engines"
]
},
"version": "0.23.0"
}