-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
117 lines (117 loc) · 3.96 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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
{
"name": "@sclable/nestjs-libs",
"license": "MIT",
"scripts": {
"precompile": "lerna run precompile",
"compile": "tsc -p tsconfig-build.json",
"postinstall": "husky",
"prepare": "husky && npm run compile && npm run dist",
"lint": "eslint . --ext .js,.ts,.tsx --max-warnings 0 --cache --cache-location 'node_modules/.cache/.eslintcache'",
"lintfix": "npm run lint -- --fix",
"lint:md": "markdownlint --ignore-path .gitignore --ignore '**/CHANGELOG.md' --config .markdownlintrc '**/*.md'",
"lintfix:md": "npm run lint:md -- --fix",
"pretest": "npm run compile",
"test": "jest",
"dist": "./dist.js && lerna run dist",
"clean": "rimraf packages/*/node_modules; npx rimraf node_modules",
"clean:dist": "rimraf packages/*/dist; npx rimraf dist"
},
"author": {
"name": "Sclable Business Solutions GmbH",
"email": "[email protected]",
"url": "https://sclable.com"
},
"repository": {
"type": "git",
"url": "[email protected]:sclable/nestjs-libs.git"
},
"engines": {
"node": "^18.14.0 || ^20.2.0 || ^22.8.0",
"npm": "^9.6.0 || ^10.8.0"
},
"dependencies": {
"@sclable/nestjs-async-provider": "file:packages/async-provider",
"@sclable/nestjs-auth": "file:packages/auth",
"@sclable/nestjs-es-cqrs": "file:packages/es-cqrs",
"@sclable/nestjs-es-cqrs-schematics": "file:packages/es-cqrs-schematics",
"@sclable/nestjs-graphql-scalar-uuid": "file:packages/graphql-scalar-uuid",
"@sclable/nestjs-queue": "file:packages/queue",
"@sclable/nestjs-storage": "file:packages/storage"
},
"devDependencies": {
"@angular-devkit/core": "18.2.7",
"@angular-devkit/schematics": "18.2.7",
"@azure/abort-controller": "1.1.0",
"@azure/service-bus": "7.9.4",
"@azure/storage-blob": "12.17.0",
"@commitlint/cli": "19.5.0",
"@commitlint/config-conventional": "19.5.0",
"@commitlint/prompt-cli": "19.5.0",
"@nestjs/apollo": "12.2.0",
"@nestjs/common": "10.4.4",
"@nestjs/core": "10.4.4",
"@nestjs/jwt": "10.2.0",
"@nestjs/passport": "10.0.3",
"@nestjs/platform-express": "10.4.4",
"@nestjs/testing": "10.4.4",
"@types/eslint": "8.56.3",
"@types/fs-extra": "11.0.4",
"@types/jest": "29.5.13",
"@types/minio": "7.1.1",
"@types/node": "22.7.4",
"@types/passport-jwt": "4.0.1",
"@types/passport-local": "1.0.38",
"@types/pluralize": "0.0.33",
"@types/supertest": "6.0.2",
"@types/uuid": "10.0.0",
"@typescript-eslint/eslint-plugin": "7.18.0",
"@typescript-eslint/parser": "7.18.0",
"amqp-ts": "1.8.0",
"apollo-server-core": "3.13.0",
"apollo-server-express": "3.13.0",
"enhanced-resolve": "5.16.0",
"eslint": "8.57.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-no-only-tests": "3.3.0",
"eslint-plugin-prettier": "4.2.1",
"glob": "8.1.0",
"glob-promise": "6.0.5",
"husky": "9.1.6",
"jest": "29.7.0",
"json-schema-to-typescript": "13.1.2",
"lerna": "8.1.8",
"lint-staged": "15.2.10",
"markdownlint-cli": "0.42.0",
"minio": "7.1.4",
"p-limit": "4.0.0",
"prettier": "2.8.8",
"rimraf": "6.0.1",
"rxjs": "7.8.1",
"shelljs": "0.8.5",
"supertest": "7.0.0",
"ts-jest": "29.2.5",
"typedoc": "0.26.8",
"typedoc-github-wiki-theme": "2.0.0",
"typedoc-plugin-markdown": "4.2.9",
"typescript": "5.6.2"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
"**/!(templates)/*/*.{js,ts,jsx,tsx}": "eslint --cache --cache-location 'node_modules/.cache/.eslintcache' --max-warnings 0",
"*.md": "markdownlint --ignore-path .gitignore --ignore '**/CHANGELOG.md' --config .markdownlintrc"
},
"jest": {
"resolver": "<rootDir>/jest-resolver.js",
"preset": "ts-jest/presets/js-with-ts",
"transformIgnorePatterns": [
"node_modules/(?!(p-limit|yocto-))"
],
"testEnvironment": "node",
"testRegex": ".*/test/.*\\.spec\\.ts$"
}
}