-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
72 lines (72 loc) · 2.04 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
68
69
70
71
72
{
"name": "@donews/nestjs-async-hooks",
"version": "0.0.2",
"description": "Nest config module",
"author": "toonew",
"license": "MIT",
"main": "index.js",
"scripts": {
"prebuild": "rimraf -rf dist",
"build": "tsc -p tsconfig.json",
"lint": "eslint 'lib/**/*.ts' --fix",
"format": "prettier --write \"lib/**/*.ts\" \"test/**/*.ts\"",
"prepublish:npm": "npm run build",
"publish:npm": "npm publish --access public",
"prepublish:next": "npm run build",
"publish:next": "npm publish --access public --tag next",
"test": "jest --config ./test/jest-e2e.json --runInBand",
"prerelease": "npm run build",
"release": "release-it"
},
"dependencies": {},
"devDependencies": {
"@commitlint/cli": "19.5.0",
"@commitlint/config-angular": "19.5.0",
"@hapi/joi": "17.1.1",
"@nestjs/common": "8.4.7",
"@nestjs/core": "8.4.7",
"@nestjs/microservices": "8.4.7",
"@nestjs/platform-express": "8.4.7",
"@nestjs/testing": "8.4.7",
"@types/express": "5.0.0",
"@types/hapi__joi": "17.1.15",
"@types/jest": "29.5.14",
"@types/node": "22.9.0",
"@typescript-eslint/eslint-plugin": "8.14.0",
"@typescript-eslint/parser": "8.14.0",
"eslint": "9.15.0",
"eslint-config-prettier": "9.1.0",
"express": "4.21.1",
"husky": "4.3.8",
"jest": "29.7.0",
"lint-staged": "15.2.10",
"prettier": "3.3.3",
"reflect-metadata": "0.1.13",
"release-it": "17.10.0",
"rimraf": "6.0.1",
"treeify": "1.1.0",
"ts-jest": "29.2.5",
"ts-node": "10.9.2",
"typescript": "5.6.3"
},
"peerDependencies": {
"@nestjs/common": "^6.10.0 || ^7.0.0 || ^8.0.0",
"reflect-metadata": "^0.1.12"
},
"lint-staged": {
"*.ts": [
"prettier --write"
]
},
"husky": {
"hooks": {
"commit-msg": "commitlint -c .commitlintrc.json -E HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged && npm run test",
"pre-push": "npm run build"
}
},
"repository": {
"type": "git",
"url": "https://github.com/DoNewsCode/nestjs-async-hooks"
}
}