forked from aws-samples/image-optimization
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 691 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 691 Bytes
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
{
"name": "image-optimization",
"version": "0.1.0",
"bin": {
"image-optimization": "bin/image-optimization.js"
},
"scripts": {
"prebuild": "npm install sharp --prefix functions/image-processing/ --os=linux --cpu=x64",
"build": "tsc",
"watch": "tsc -w",
"test": "jest",
"cdk": "cdk"
},
"devDependencies": {
"@types/jest": "^29.5.11",
"@types/node": "20.11.2",
"@types/prettier": "2.7.3",
"aws-cdk": "2.121.1",
"jest": "^29.7.0",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.2",
"typescript": "~5.3.3"
},
"dependencies": {
"aws-cdk-lib": "2.121.1",
"constructs": "^10.3.0",
"source-map-support": "^0.5.21"
}
}