-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.89 KB
/
Copy pathpackage.json
File metadata and controls
77 lines (77 loc) · 2.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
{
"name": "crud-workspace",
"version": "0.0.0",
"private": true,
"description": "Workspace for @nestm/crud and its persistence adapters.",
"author": "nestm",
"license": "BSD-3-Clause",
"repository": {
"type": "git",
"url": "git+https://github.com/nestm-dev/crud.git"
},
"type": "module",
"engines": {
"node": ">=22.12.0"
},
"packageManager": "pnpm@11.24.0",
"scripts": {
"build": "pnpm --filter \"./packages/*\" run build",
"build:watch": "pnpm --parallel --filter \"./packages/*\" run build:watch",
"clean": "node scripts/clean.mjs",
"lint": "oxlint --type-aware .",
"lint:fix": "oxlint --type-aware --fix .",
"format": "prettier --write . --ignore-unknown",
"format:check": "prettier --check . --ignore-unknown",
"typecheck": "tsc -b",
"typecheck:clean": "tsc -b --clean",
"check": "pnpm run lint && pnpm run format:check && pnpm run typecheck",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"test:postgres:generate": "prisma generate --schema tests/postgres/prisma/schema.prisma",
"test:postgres": "pnpm run test:postgres:generate && tsc -p tests/postgres/tsconfig.json && vitest run --config vitest.postgres.config.ts",
"verify:attw": "pnpm exec attw --pack packages/crud --profile esm-only && pnpm exec attw --pack packages/crud-memory --profile esm-only && pnpm exec attw --pack packages/crud-typeorm --profile esm-only && pnpm exec attw --pack packages/crud-drizzle --profile esm-only && pnpm exec attw --pack packages/crud-prisma --profile esm-only",
"verify:pack": "pnpm run build && pnpm --filter \"./packages/*\" exec publint --strict && pnpm run verify:attw",
"verify:consumer": "node .github/scripts/verify-consumers.mjs",
"verify": "pnpm run check && pnpm run test && pnpm run test:postgres && pnpm run verify:pack && pnpm run verify:consumer",
"changeset": "changeset",
"release:version": "node scripts/version.mjs",
"release": "node scripts/publish.mjs"
},
"devDependencies": {
"@arethetypeswrong/cli": "0.18.5",
"@changesets/cli": "3.0.1",
"@nestjs/common": "12.0.1",
"@nestjs/core": "12.0.1",
"@nestjs/platform-express": "12.0.1",
"@nestjs/platform-fastify": "12.0.1",
"@nestjs/swagger": "12.0.0",
"@nestjs/testing": "12.0.1",
"@nestm/standard-schema": "0.1.0-alpha.9",
"@prisma/adapter-pg": "7.10.0",
"@prisma/client": "7.10.0",
"@standard-schema/spec": "1.1.0",
"@types/node": "26.4.0",
"@types/pg": "8.23.1",
"@types/supertest": "7.2.1",
"@vitest/coverage-v8": "4.1.11",
"cross-env": "10.1.0",
"drizzle-orm": "0.45.2",
"express": "5.2.1",
"fastify": "5.12.1",
"oxlint": "1.80.0",
"oxlint-tsgolint": "7.0.2001",
"pg": "8.23.0",
"prettier": "3.9.6",
"prisma": "7.10.0",
"publint": "0.3.24",
"reflect-metadata": "0.2.2",
"rxjs": "7.8.2",
"supertest": "7.2.2",
"tsdown": "0.22.14",
"typeorm": "1.1.0",
"typescript": "6.0.3",
"vitest": "4.1.11",
"zod": "4.4.3"
}
}