-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·54 lines (54 loc) · 1.78 KB
/
Copy pathpackage.json
File metadata and controls
executable file
·54 lines (54 loc) · 1.78 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
{
"name": "rust-workspaces",
"version": "0.1.0",
"type": "module",
"scripts": {
"bootstrap": "cdk bootstrap",
"build": "cargo build-lambdas",
"clean": "cdk gc --unstable='gc' --type='s3' --created-buffer-days=1 --confirm=false",
"deploy": "cdk deploy --all",
"destroy": "cdk destroy --all",
"format-check": "prettier --check .",
"format-fix": "prettier --write .",
"test": "pnpm test-lambdas && pnpm test-linter && pnpm test-type && pnpm test-unit && pnpm test-cdk",
"test-cdk": "cdk synth --quiet",
"test-integration": "vitest run --config vite.config-integration.ts",
"test-lambdas": "cargo test-lambdas",
"test-linter": "eslint --ext=js,ts .",
"test-type": "tsc",
"test-unit": "vitest run --coverage"
},
"devDependencies": {
"@aws-crypto/sha256-js": "^5.2.0",
"@aws-sdk/client-cloudformation": "^3.552.0",
"@aws-sdk/credential-providers": "^3.552.0",
"@aws-sdk/types": "^3.535.0",
"@event-scout/client": "^0.8.0",
"@event-scout/construct": "^0.8.0",
"@smithy/signature-v4": "^5.0.0",
"@swc-node/register": "^1.9.0",
"@types/node": "^24.0.0",
"@typescript-eslint/eslint-plugin": "^7.5.0",
"@typescript-eslint/parser": "^7.5.0",
"@vitest/coverage-v8": "^4.0.0",
"aws-cdk": "2.1130.0",
"aws-cdk-lib": "2.261.0",
"axios": "^1.6.8",
"constructs": "^10.0.98",
"dotenv": "^17.0.0",
"eslint": "^8.29.0",
"eslint-import-resolver-typescript": "^4.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prefer-arrow": "^1.2.3",
"prettier": "^3.1.0",
"syncpack": "^14.0.0",
"typescript": "^7.0.0",
"vite": "^8.0.0",
"vite-tsconfig-paths": "^6.0.0",
"vitest": "^4.0.0"
},
"engines": {
"node": "^24.0.0"
},
"packageManager": "pnpm@10.34.5"
}