-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
103 lines (103 loc) · 3.48 KB
/
Copy pathpackage.json
File metadata and controls
103 lines (103 loc) · 3.48 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
100
101
102
103
{
"name": "@deepracer-indy/source",
"version": "0.0.0",
"packageManager": "pnpm@9.7.0",
"private": true,
"engines": {
"node": ">=22",
"pnpm": ">=9"
},
"type": "module",
"scripts": {
"build": "nx run-many -t build --nx-bail --output-style=static",
"check": "nx run-many -t lint typecheck --output-style=static",
"check:debug": "nx run-many -t lint typecheck --verbose --output-style=stream --skip-nx-cache",
"clean": "nx reset && nx run-many -t clean",
"install:ci": "pnpm i --frozen-lockfile",
"lint": "nx run-many -t lint --output-style=dynamic",
"reset:cache": "nx reset",
"run-many": "nx run-many",
"test:affected": "nx affected -t test",
"test": "vitest --version && vitest --coverage",
"test:coverage": "vitest --coverage",
"test:watch": "vitest --watch",
"typecheck": "nx run-many -t typecheck",
"release": "pnpm check && pnpm test:coverage && pnpm build",
"upgrade-deps": "nx run-many -t upgrade-deps",
"upgrade-dev-deps": "pnpx npm-check-updates -i"
},
"devDependencies": {
"@nx/eslint": "19.4.4",
"@nx/eslint-plugin": "19.4.4",
"@nx/js": "19.4.4",
"@nx/react": "19.4.4",
"@nx/storybook": "19.4.4",
"@nx/vite": "19.4.4",
"@nx/web": "19.4.4",
"@nx/workspace": "19.4.4",
"@stylistic/eslint-plugin": "^2.13.0",
"@swc-node/register": "~1.10.10",
"@swc/cli": "~0.6.0",
"@swc/core": "~1.11.31",
"@swc/helpers": "~0.5.21",
"@testing-library/react": "16.2.0",
"@types/node": "22.13.9",
"@types/react": "18.3.3",
"@types/react-dom": "18.3.0",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"@vitest/coverage-v8": "4.1.6",
"@vitest/ui": "4.1.6",
"aws-sdk-client-mock": "^4.1.0",
"aws-sdk-client-mock-vitest": "^6.2.1",
"esbuild": "0.28.1",
"eslint": "~8.57.1",
"eslint-config-prettier": "^9.1.2",
"eslint-import-resolver-typescript": "^3.10.1",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-jsx-a11y": "6.9.0",
"eslint-plugin-prettier": "^5.5.5",
"eslint-plugin-react": "7.35.0",
"eslint-plugin-react-hooks": "4.6.2",
"eslint-plugin-testing-library": "^6.5.0",
"eslint-plugin-vitest": "^0.5.4",
"jsdom": "~26.0.0",
"npm-check-updates": "^17.1.18",
"nx": "19.4.4",
"prettier": "^3.8.2",
"tsx": "^4.21.0",
"typescript": "5.8.2",
"vite": "6.4.2",
"vitest": "4.1.6"
},
"dependencies": {
"@aws-lambda-powertools/logger": "^2.32.0",
"@aws-lambda-powertools/metrics": "^2.32.0",
"@aws-lambda-powertools/tracer": "^2.32.0",
"@aws-sdk/client-appconfig": "^3.1029.0",
"@aws-sdk/client-appconfigdata": "^3.1029.0",
"@aws-sdk/client-cloudwatch-logs": "3.654.0",
"@aws-sdk/client-kinesis-video": "3.654.0",
"@aws-sdk/client-kinesis-video-archived-media": "3.654.0",
"@aws-sdk/client-kinesis-video-media": "3.654.0",
"@aws-sdk/client-lambda": "3.654.0",
"@aws-sdk/client-s3": "3.654.0",
"@aws-sdk/client-sagemaker": "3.654.0",
"@aws-sdk/client-service-quotas": "3.654.0",
"@aws-sdk/client-sfn": "3.654.0",
"@aws-sdk/client-sqs": "3.654.0",
"@smithy/middleware-retry": "^3.0.34",
"@smithy/protocol-http": "^4.1.8",
"@smithy/types": "^3.7.2"
},
"pnpm": {
"overrides": {
"fast-xml-parser": ">=5.7.0",
"npm": "npm:empty-npm-package@1.0.0",
"minimatch@>=9.0.0 <9.0.7": "9.0.7",
"lodash@<=4.17.23": "4.18.1",
"tmp": ">=0.2.6",
"flatted": ">=3.4.2"
}
}
}