-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 899 Bytes
/
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
{
"name": "weather-site",
"version": "0.1.0",
"bin": {
"weather-site": "bin/weather-site.js"
},
"scripts": {
"build": "tsc",
"watch": "tsc -w",
"test": "npm run build && jest",
"cdk": "cdk",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,json,md}\"",
"clean": "rm -rf dist",
"deploy": "npm run clean && npm run build && npm run cdk deploy -- --all",
"destroy": "npm run cdk destroy -- --all"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/node": "20.14.2",
"aws-cdk": "2.146.0",
"dotenv": "^16.4.5",
"esbuild": "^0.21.5",
"jest": "^29.7.0",
"prettier": "^3.3.2",
"ts-jest": "^29.1.4",
"ts-node": "^10.9.2",
"typescript": "~5.4.5"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.598.0",
"aws-cdk-lib": "2.146.0",
"constructs": "^10.3.0",
"source-map-support": "^0.5.21"
}
}