generated from znckco/nestjs-module-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
79 lines (79 loc) · 2.08 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
73
74
75
76
77
78
79
{
"name": "nestjs-unilog",
"version": "0.5.0",
"description": "",
"main": "dist/unilog.js",
"module": "dist/unilog.esm.js",
"types": "dist/unilog.d.ts",
"files": [
"dist"
],
"engines": {
"node": ">=12.0"
},
"scripts": {
"test": "jest --coverage",
"build": "rollup -c --environment BUILD:production"
},
"keywords": [
"nestjs"
],
"author": "Rahul Kadyan <[email protected]> (https://znck.me)",
"license": "MIT",
"peerDependencies": {
"@nestjs/common": "^8.0.0",
"@nestjs/core": "^8.0.0"
},
"dependencies": {
"cls-hooked": "^4.2.2",
"hyperid": "^3.0.0",
"pino": "^7.6.3",
"reflect-metadata": "^0.1.13",
"rxjs": "^7.5.2"
},
"devDependencies": {
"@nestjs/common": "8.2.5",
"@nestjs/core": "8.2.5",
"@nestjs/platform-express": "8.2.5",
"@nestjs/testing": "8.2.5",
"@rollup/plugin-typescript": "^8.3.0",
"@types/cls-hooked": "^4.3.3",
"@types/express": "^4.17.13",
"@types/jest-expect-message": "^1.0.3",
"@types/node": "^17.0.9",
"@types/pino": "^7.0.5",
"@types/supertest": "^2.0.11",
"@typescript-eslint/eslint-plugin": "^5.10.0",
"@typescript-eslint/parser": "^5.10.0",
"eslint": "^8.7.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-standard-with-typescript": "^21.0.1",
"eslint-import-resolver-typescript": "^2.5.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"eslint-plugin-standard": "^5.0.0",
"fastify": "^3.25.3",
"husky": "^7.0.4",
"jest": "^27.4.7",
"jest-expect-message": "^1.0.2",
"lint-staged": "^12.1.7",
"prettier": "^2.5.1",
"rollup": "^2.64.0",
"rollup-plugin-dts": "^4.1.0",
"rollup-plugin-typescript-paths": "^1.3.0",
"supertest": "^6.2.1",
"ts-jest": "^27.1.3",
"tslib": "^2.3.1",
"typeorm": "^0.2.41",
"typescript": "^4.5.4"
},
"husky": {
"hooks": {
"pre-push": "npm test",
"pre-commit": "lint-staged"
}
}
}