-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
99 lines (99 loc) · 2.84 KB
/
package.json
File metadata and controls
99 lines (99 loc) · 2.84 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
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": "@aligent/microservice-development-utilities",
"description": "A set of utilities for Aligent Microservices Development",
"scripts": {
"build": "nx affected -t build",
"build:all": "nx run-many -t build",
"test": "nx affected -t test --coverage",
"test:all": "nx run-many -t test --coverage",
"lint": "nx affected -t lint",
"lint:all": "nx run-many -t lint",
"check-types": "nx affected -t typecheck",
"check-types:all": "nx run-many -t typecheck",
"prepare": "[ -d .git ] && git config core.hooksPath '.git-hooks' || true",
"release-plan": "nx release plan"
},
"repository": {
"type": "git",
"url": "https://github.com/aligent/microservice-development-utilities.git"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.922.0",
"@aws-sdk/client-ssm": "^3.922.0",
"@redocly/openapi-core": "^1.34.2",
"object-hash": "^3.0.0",
"openapi-typescript": "7.7.3",
"ts-morph": "^27.0.2"
},
"devDependencies": {
"@aligent/ts-code-standards": "^4.2.0",
"@nx/devkit": "22.4.2",
"@nx/eslint": "22.4.2",
"@nx/eslint-plugin": "22.4.2",
"@nx/js": "22.4.2",
"@nx/plugin": "22.4.2",
"@nx/vitest": "22.4.2",
"@nx/web": "22.4.2",
"@smithy/util-stream": "^3.2.1",
"@swc-node/register": "^1.11.1",
"@swc/core": "^1.11.24",
"@types/node": "^22.15.3",
"@types/object-hash": "^3.0.6",
"@types/prompts": "^2.4.9",
"@vitest/coverage-v8": "4.0.9",
"@vitest/ui": "4.0.9",
"aws-sdk-client-mock": "^4.1.0",
"create-nx-workspace": "22.4.2",
"eslint": "^9.39.0",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-import": "^2.32.0",
"jiti": "2.6.1",
"jsonc-eslint-parser": "^2.4.1",
"nx": "22.4.2",
"oauth-sign": "^0.9.0",
"openapi-fetch": "^0.17.0",
"prettier": "^3.6.2",
"prompts": "^2.4.2",
"typedoc": "^0.28.14",
"typedoc-plugin-markdown": "^4.9.0",
"typescript": "^5.9.3",
"verdaccio": "^6.2.4",
"vite": "7.3.1",
"vitest": "4.0.9",
"yargs": "^18.0.0"
},
"overrides": {
"lodash": "4.17.23"
},
"author": "Aligent",
"license": "MIT",
"workspaces": [
"packages/*",
"tools/*"
],
"nx": {
"name": "microservice-development-utilities",
"projectType": "application",
"includedScripts": [],
"targets": {
"start-local-registry": {
"executor": "nx:run-commands",
"options": {
"commands": [
"verdaccio --listen 4873 --config .verdaccio/config.yml",
"npm set registry http://localhost:4873/ --location project"
]
}
},
"stop-local-registry": {
"executor": "nx:run-commands",
"options": {
"commands": [
"npm set registry https://registry.npmjs.org/ --location project",
"kill $(lsof -t -i:4873)"
]
}
}
}
}
}