-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.78 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.78 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
{
"name": "@hodfords/nestjs-validation",
"version": "11.1.2",
"description": "A utility for simplifying validation and providing translated error messages in NestJS applications",
"main": "index.js",
"scripts": {
"prebuild": "rimraf dist",
"build": "tsc",
"postbuild": "cp package.json dist/lib && cp README.md dist/lib && cp .npmrc dist/lib",
"prepare": "is-ci || husky",
"format": "prettier --write \"lib/**/*.ts\" \"sample/**/*.ts\"",
"cspell": "cspell",
"lint": "eslint \"lib/**/*.ts\" \"sample/**/*.ts\" --fix --max-warnings 0",
"lint-staged": "lint-staged",
"start": "nest start",
"start:dev": "npm run prebuild && nest start --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hodfords-solutions/nestjs-validation"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/hodfords-solutions/nestjs-validation/issues"
},
"homepage": "https://opensource.hodfords.uk/",
"devDependencies": {
"@commitlint/cli": "20.4.1",
"@commitlint/config-conventional": "20.4.1",
"@grpc/grpc-js": "1.14.3",
"@hodfords/nestjs-eslint-config": "11.0.2",
"@hodfords/nestjs-exception": "11.0.2",
"@hodfords/nestjs-prettier-config": "11.0.1",
"@hodfords/nestjs-cls-translation": "11.1.0",
"@nestjs/cli": "11.0.16",
"@nestjs/common": "11.1.12",
"@nestjs/core": "11.1.12",
"@nestjs/platform-express": "11.1.12",
"@types/node": "25.2.0",
"class-transformer": "0.5.1",
"class-validator": "0.14.3",
"cspell": "9.6.3",
"eslint": "9.39.2",
"husky": "9.1.7",
"is-ci": "4.1.0",
"lint-staged": "16.2.7",
"lodash": "4.17.23",
"reflect-metadata": "0.2.2",
"rimraf": "6.1.2",
"typeorm": "0.3.28",
"typescript": "5.9.3"
}
}