-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
98 lines (98 loc) · 2.43 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "cdk-starter",
"version": "0.0.0",
"description": "",
"scripts": {
"prepare": "husky",
"validate": "wireit",
"build-src": "wireit",
"cdk:diff:dev": "wireit",
"cdk:diff:stage": "wireit",
"cdk:diff:prod": "wireit",
"cdk:deploy:dev": "wireit",
"cdk:deploy:stage": "wireit",
"cdk:deploy:prod": "wireit",
"test-unit": "vitest",
"test-e2e": "TEST_TYPE=E2E vitest"
},
"wireit": {
"validate": {
"command": "esr ./scripts/index.ts -c validate"
},
"build-src": {
"command": "esr ./scripts/index.ts -c build-src",
"files": [
"scripts/index.ts",
"src/**"
],
"output": [
"dist/**"
]
},
"cdk:diff:dev": {
"command": "esr ./scripts/index.ts -c cdk -o diff -e dev",
"dependencies": [
"build-src"
]
},
"cdk:diff:stage": {
"command": "esr ./scripts/index.ts -c cdk -o diff -e stage",
"dependencies": [
"build-src"
]
},
"cdk:diff:prod": {
"command": "esr ./scripts/index.ts -c cdk -o diff -e prod",
"dependencies": [
"build-src"
]
},"cdk:deploy:dev": {
"command": "esr ./scripts/index.ts -c cdk -o deploy -e dev",
"dependencies": [
"build-src"
]
},
"cdk:deploy:stage": {
"command": "esr ./scripts/index.ts -c cdk -o deploy -e stage",
"dependencies": [
"build-src"
]
},
"cdk:deploy:prod": {
"command": "esr ./scripts/index.ts -c cdk -o deploy -e prod",
"dependencies": [
"build-src"
]
}
},
"author": "",
"license": "ISC",
"dependencies": {
"@types/aws-lambda": "^8.10.133",
"@types/fs-extra": "^11.0.4",
"@types/node": "^20.11.19",
"@types/yargs": "^17.0.32",
"@typescript-eslint/eslint-plugin": "^7.0.1",
"@typescript-eslint/parser": "^7.0.1",
"aws-cdk": "2.128.0",
"aws-cdk-lib": "2.128.0",
"axios": "^1.6.7",
"constructs": "^10.3.0",
"esbuild": "^0.20.0",
"esbuild-runner": "^2.2.2",
"eslint-config-prettier": "^9.1.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.1.3",
"execa": "5",
"fs-extra": "^11.2.0",
"husky": "^9.0.11",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.3.3",
"vite-tsconfig-paths": "^4.3.1",
"vitest": "^1.2.2",
"wireit": "^0.14.4",
"yargs": "^17.7.2",
"zod": "^3.22.4"
}
}