-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.51 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 2.51 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
{
"name": "@aligent/app",
"version": "4.2.0",
"description": "Aligent AWS microservices template using Typescript and AWS CDK",
"author": "Aligent Consulting",
"type": "module",
"scripts": {
"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",
"typecheck": "nx affected -t typecheck",
"typecheck:all": "nx run-many -t typecheck",
"prepare": "[ -d .git ] && git config core.hooksPath '.git-hooks' || true",
"pg:synth": "nx run core:cdk synth 'dev/**' --exclusively --profile playground",
"pg:deploy": "nx run core:cdk deploy --method 'direct' 'dev/**' --exclusively --profile playground --require-approval never",
"pg:destroy": "nx run core:cdk destroy 'dev/**' --profile playground",
"audit": "nx run-many -t lint typecheck test --configuration coverage --skip-nx-cache"
},
"workspaces": [
"libs/*",
"services/*",
"tools/*",
"applications/*"
],
"devDependencies": {
"@aligent/ts-code-standards": "^4.0.2",
"@nx/devkit": "21.5.2",
"@nx/esbuild": "21.5.2",
"@nx/eslint": "21.5.2",
"@nx/eslint-plugin": "21.5.2",
"@nx/js": "21.5.2",
"@nx/rsbuild": "21.5.2",
"@nx/vite": "21.5.2",
"@nx/web": "21.5.2",
"@rsbuild/core": "^1.5.6",
"@swc-node/register": "^1.10.10",
"@swc/core": "^1.13.3",
"@swc/helpers": "^0.5.17",
"@types/aws-lambda": "^8.10.152",
"@types/node": "^22.17.0",
"@typescript-eslint/eslint-plugin": "8.44.0",
"@typescript-eslint/parser": "8.44.0",
"@vitest/coverage-v8": "^3.2.4",
"@vitest/ui": "^3.2.4",
"aws-cdk": "^2.1023.0",
"aws-cdk-lib": "^2.211.0",
"cdk-nag": "^2.36.54",
"constructs": "^10.4.2",
"esbuild": "~0.25.8",
"esbuild-visualizer": "^0.7.0",
"eslint": "^9.32.0",
"eslint-config-prettier": "10.1.8",
"fast-glob": "^3.3.3",
"jiti": "2.5.1",
"jsonc-eslint-parser": "^2.4.0",
"nx": "21.5.2",
"open": "^10.2.0",
"prettier": "^3.6.2",
"store-parameters": "^1.0.6",
"tslib": "^2.8.1",
"typescript": "~5.9.2",
"vite": "7.1.11",
"vitest": "^3.2.4"
},
"engines": {
"node": "^22.14.0"
},
"license": "MIT",
"packageManager": "yarn@4.9.2+sha512.1fc009bc09d13cfd0e19efa44cbfc2b9cf6ca61482725eb35bbc5e257e093ebf4130db6dfe15d604ff4b79efd8e1e8e99b25fa7d0a6197c9f9826358d4d65c3c",
"dependencies": {
"@aws-lambda-powertools/logger": "^2.24.1",
"@aws-sdk/client-s3": "^3.888.0",
"arktype": "^2.1.20"
}
}