-
-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 2.16 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 2.16 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
{
"author": "Roberto Pintos López",
"bugs": {
"url": "https://github.com/inversify/monorepo/issues"
},
"description": "InversifyJS validation docs code examples package",
"devDependencies": {
"@inversifyjs/ajv-validation": "workspace:*",
"@inversifyjs/class-validation": "workspace:*",
"@inversifyjs/code-examples-devkit": "workspace:*",
"@inversifyjs/eslint-plugin-require-extensions": "workspace:*",
"@inversifyjs/http-core": "workspace:*",
"@inversifyjs/http-express": "workspace:*",
"@inversifyjs/http-open-api": "workspace:*",
"@inversifyjs/http-openapi-validation": "workspace:*",
"@inversifyjs/http-validation": "workspace:*",
"@inversifyjs/open-api-types": "workspace:*",
"@inversifyjs/standard-schema-validation": "workspace:*",
"@inversifyjs/validation-common": "workspace:*",
"@types/express": "5.0.6",
"@types/node": "24.12.2",
"@vitest/coverage-v8": "4.1.2",
"ajv": "8.18.0",
"ajv-formats": "3.0.1",
"class-transformer": "~0.5.1",
"class-validator": "~0.15.1",
"eslint": "10.2.0",
"express": "5.2.1",
"glob": "13.0.6",
"inversify": "8.1.0",
"prettier": "3.8.1",
"rimraf": "6.1.3",
"tslib": "2.8.1",
"typescript": "6.0.2",
"vitest": "4.1.2",
"zod": "4.3.6"
},
"homepage": "https://inversify.io",
"devEngines": {
"node": "^24.10.0",
"pnpm": "^10.13.1"
},
"license": "MIT",
"name": "@inversifyjs/validation-code-examples",
"type": "module",
"private": true,
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/inversify/monorepo.git"
},
"scripts": {
"build": "tsc && pnpm run generate:examples",
"build:clean": "rimraf generated lib",
"format": "prettier --write ./src",
"generate:examples": "node ./lib/scripts/generateExamples/index.js",
"lint": "eslint ./src",
"prebuild": "pnpm run build:clean",
"test": "vitest run",
"test:integration": "pnpm run test --project Integration",
"test:coverage": "pnpm run test:unit --coverage",
"test:uncommitted": "pnpm run test --changed=HEAD",
"test:unit": "pnpm run test --project Unit"
}
}