-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
82 lines (82 loc) · 2.34 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
{
"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 check-types",
"check-types:all": "nx run-many -t check-types",
"prepare": "[ -d .git ] && git config core.hooksPath '.git-hooks' || true"
},
"repository": {
"type": "git",
"url": "https://github.com/aligent/microservice-development-utilities.git"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.687.0",
"@aws-sdk/client-ssm": "^3.687.0",
"axios": "^1.7.7",
"lodash": "^4.17.21",
"object-hash": "^3.0.0"
},
"devDependencies": {
"@aligent/ts-code-standards": "^1.4.1",
"@nx/eslint": "20.0.12",
"@nx/eslint-plugin": "20.0.12",
"@nx/js": "20.0.12",
"@nx/vite": "20.0.12",
"@nx/web": "20.0.12",
"@smithy/util-stream": "^3.2.1",
"@swc-node/register": "^1.10.9",
"@swc/core": "^1.9.2",
"@types/lodash": "^4.17.13",
"@types/node": "^22.9.0",
"@types/object-hash": "^3.0.6",
"@vitest/coverage-v8": "^2.0.5",
"@vitest/ui": "^2.0.5",
"aws-sdk-client-mock": "^4.1.0",
"eslint": "^9.14.0",
"eslint-plugin-import": "^2.31.0",
"nx": "20.0.12",
"prettier": "^3.3.3",
"typedoc": "^0.26.11",
"typedoc-plugin-markdown": "^4.2.10",
"typescript": "^5.6.3",
"verdaccio": "^5.32.2",
"vite": "^5.0.0",
"vitest": "^2.0.5"
},
"author": "Aligent",
"license": "ISC",
"workspaces": [
"packages/*"
],
"nx": {
"name": "microservice-development-utilities",
"includedScripts": [],
"targets": {
"start-local-registry": {
"executor": "nx:run-commands",
"options": {
"commands": [
"verdaccio --listen 4873 --config .verdaccio/config.yml",
"npm set registry http://localhost:4873/"
]
}
},
"stop-local-registry": {
"executor": "nx:run-commands",
"options": {
"commands": [
"npm set registry https://registry.npmjs.org/",
"kill $(lsof -t -i:4873)"
]
}
}
}
}
}