-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
67 lines (67 loc) · 1.86 KB
/
package.json
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
{
"name": "nestjs-typebox",
"version": "4.0.0-next.1",
"description": "",
"author": "Andrew Smiley <jayalfredprufrock@gmail.com>",
"license": "MIT",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"src",
"dist"
],
"scripts": {
"start": "tsc --watch",
"build": "tsc",
"lint": "eslint \"src/**/*.ts\" --fix",
"prepare": "husky install",
"test": "npx tsx test.ts"
},
"lint-staged": {
"./{src,test}/**/*.ts": [
"eslint --fix"
]
},
"peerDependencies": {
"@nestjs/common": "^9.0.1 || ^10.0.3",
"@nestjs/core": "^9.0.1 || ^10.0.3",
"@nestjs/swagger": "^6.1.1 || ^7.0.11",
"@sinclair/typebox": "^0.34.0",
"rxjs": "^7.5.6"
},
"devDependencies": {
"@changesets/cli": "^2.26.2",
"@nestjs/common": "^10.0.5",
"@nestjs/core": "^10.0.5",
"@nestjs/swagger": "^7.1.1",
"@sinclair/typebox": "^0.34.0",
"@types/node": "^20.4.1",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"eslint": "^8.44.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-require-extensions": "^0.1.3",
"eslint-plugin-simple-import-sort": "^10.0.0",
"husky": "^8.0.3",
"lint-staged": "^15.2.0",
"prettier": "^3.0.0",
"rxjs": "^7.8.1",
"typescript": "^5.1.6"
},
"publishConfig": {
"access": "public"
},
"keywords": [
"typebox",
"nestjs",
"json-schema",
"nestjs-typebox",
"class-validator"
],
"repository": {
"type": "git",
"url": "https://github.com/jayalfredprufrock/nestjs-typebox"
}
}