-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
99 lines (99 loc) · 2.54 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "@nestjs-steroids/async-context",
"version": "2.0.0",
"description": "NestJS Async Context based on async_hooks",
"author": "Vlad Krokhin",
"private": false,
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/nestjs-steroids/async-context"
},
"bugs": {
"url": "https://github.com/nestjs-steroids/async-context/issues"
},
"keywords": [
"nest",
"nestjs",
"async-context",
"async-hooks",
"async_hooks",
"async-hooks-context",
"async-local-storage"
],
"files": [
"dist"
],
"main": "dist/index.js",
"engines": {
"node": ">=12.17.0"
},
"scripts": {
"prebuild": "rimraf dist",
"build": "tsc -p tsconfig.json",
"prepublish": "npm run build && rm dist/*.spec.*",
"start": "nest start",
"start:dev": "nest start --watch",
"start:debug": "nest start --debug --watch",
"start:prod": "node dist/main",
"lint": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix",
"test": "jest",
"test:watch": "jest --watch",
"test:cov": "jest --coverage",
"test:debug": "node --inspect-brk -r tsconfig-paths/register -r ts-node/register node_modules/.bin/jest --runInBand"
},
"peerDependencies": {
"@nestjs/common": ">=7.0.0",
"@nestjs/core": ">=7.0.0"
},
"devDependencies": {
"@nestjs/cli": "^8.2.0",
"@nestjs/common": "^8.2.6",
"@nestjs/core": "^8.2.6",
"@nestjs/schematics": "^8.0.5",
"@types/jest": "27.4.0",
"@types/node": "^16.11.7",
"@typescript-eslint/eslint-plugin": "^5.10.1",
"@typescript-eslint/parser": "^5.10.1",
"eslint": "^7.32.0",
"eslint-config-standard-with-typescript": "^21.0.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.2.0",
"jest": "27.4.7",
"reflect-metadata": "^0.1.13",
"rimraf": "^3.0.2",
"rxjs": "^7.5.2",
"ts-jest": "27.1.3",
"ts-loader": "^9.2.6",
"ts-node": "^10.4.0",
"tsconfig-paths": "^3.12.0",
"typescript": "^4.5.5"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": "src",
"testRegex": ".spec.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"coverageDirectory": "../coverage",
"testPathIgnorePatterns": [
"<rootDir>/index.ts"
],
"testEnvironment": "node"
},
"eslintConfig": {
"extends": "standard-with-typescript",
"parserOptions": {
"project": "./tsconfig.json"
},
"rules": {
"@typescript-eslint/no-extraneous-class": "off"
}
}
}