-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 985 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 985 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
30
31
32
33
34
35
{
"name": "benchling-webhook",
"version": "0.2.0",
"bin": {
"benchling-webhook": "bin/benchling-webhook.js"
},
"scripts": {
"clean": "rm -rf cdk.out */{*.js,*.d.ts}",
"test": "NODE_ENV=test node --max-old-space-size=4096 ./node_modules/.bin/jest",
"cdk": "npm run test && npx cdk deploy --require-approval never",
"lint": "eslint . --ext .ts --fix"
},
"devDependencies": {
"@eslint/js": "^9.22.0",
"@types/adm-zip": "^0.5.7",
"@types/jest": "^29.5.14",
"@types/node": "22.14.0",
"@typescript-eslint/eslint-plugin": "^8.26.1",
"@typescript-eslint/parser": "^8.26.1",
"aws-cdk": "2.1006.0",
"eslint": "^9.22.0",
"globals": "^16.0.0",
"jest": "^29.7.0",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "~5.8.0"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.758.0",
"adm-zip": "^0.5.10",
"aws-cdk-lib": "2.187.0",
"aws-sdk": "^2.1574.0",
"constructs": "^10.0.0"
}
}