-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.21 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.21 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
{
"name": "weather-site",
"version": "0.1.0",
"bin": {
"weather-site": "bin/weather-site.js"
},
"scripts": {
"build": "tsc --noEmit",
"cdk": "cdk",
"deploy": "npm run cdk deploy -- --all",
"deploy:ci": "npm run cdk deploy -- --all --require-approval never",
"destroy": "npm run cdk destroy -- --all",
"diff": "npm run cdk diff -- --all",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,json,md}\"",
"format:ci": "prettier --check \"**/*.{js,jsx,ts,tsx,json,md}\"",
"lint": "eslint --fix",
"lint:ci": "eslint --quiet",
"synth": "npm run cdk synth",
"synth:quiet": "npm run cdk synth -- -q",
"test": "vitest run",
"watch": "tsc -w --noEmit"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/node": "^25.5.0",
"aws-cdk": "^2.1115.1",
"esbuild": "^0.27.4",
"eslint": "^10.1.0",
"eslint-plugin-simple-import-sort": "^12.1.1",
"globals": "^17.4.0",
"prettier": "^3.8.1",
"tsx": "^4.21.0",
"typescript": "~5.9.3",
"typescript-eslint": "^8.58.0",
"vitest": "^4.1.2",
"zod": "^4.3.6"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.1021.0",
"aws-cdk-lib": "^2.246.0",
"constructs": "^10.6.0"
}
}