-
Notifications
You must be signed in to change notification settings - Fork 53
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.82 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 loc) · 1.82 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
{
"name": "nestjs-cls-root",
"version": "0.0.0",
"description": "A continuation-local storage module compatible with NestJS's dependency injection.",
"author": "papooch",
"license": "MIT",
"engines": {
"node": ">=18"
},
"repository": "https://github.com/Papooch/nestjs-cls",
"private": true,
"homepage": "https://papooch.github.io/nestjs-cls/",
"keywords": [
"nest",
"nestjs",
"cls",
"continuation-local-storage",
"als",
"AsyncLocalStorage",
"async_hooks",
"request context",
"async context"
],
"workspaces": [
"packages/*",
"packages/transactional-adapters/*",
"docs"
],
"packageManager": "yarn@4.12.0",
"scripts": {
"test": "yarn workspaces foreach --all --topological-dev run test",
"build": "yarn workspaces foreach --all --topological-dev --exclude nestjs-cls-docs run build",
"build:release": "yarn build --sourceMap false",
"format": "prettier --write \"packages/**/*.ts\"",
"format:check": "prettier --check \"packages/**/*.ts\"",
"lint": "eslint \"packages/**/*.ts\" --fix",
"lint:check": "eslint \"packages/**/*.ts\"",
"depcruise": "yarn depcruise packages --include-only \"^packages/.*/src\" --exclude \"\\.spec\\.ts\" --config --output-type dot | dot -T svg | yarn depcruise-wrap-stream-in-html > dependency-graph.html"
},
"devDependencies": {
"@goldstack/utils-typescript-references": "^0.3.27",
"@monoweave/cli": "^2.2.0",
"@monoweave/plugin-github": "^2.0.2",
"@tophat/conventional-changelog-config": "^1.0.1",
"@typescript-eslint/eslint-plugin": "^8.53.0",
"@typescript-eslint/parser": "^8.53.0",
"dependency-cruiser": "^16.10.1",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.5",
"prettier": "^3.8.0",
"typescript": "5.9.3"
}
}