-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·40 lines (40 loc) · 1.11 KB
/
package.json
File metadata and controls
executable file
·40 lines (40 loc) · 1.11 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
{
"name": "troyblank-api",
"version": "1.0.0",
"packageManager": "[email protected]",
"bin": {
"halfsies": "bin/halfsies.js"
},
"scripts": {
"lint": "tsc --noEmit && eslint --max-warnings=0 src --ext .ts,.tsx",
"unit": "jest --maxWorkers=25%",
"unit:watch": "jest --watch --maxWorkers=25%",
"test": "npm run lint && npm run unit",
"bootstrap": "cdk bootstrap",
"synth": "cdk synth",
"deploy": "cdk deploy --all"
},
"dependencies": {
"@aws-sdk/client-dynamodb": "3.1024.0",
"@aws-sdk/lib-dynamodb": "3.1024.0",
"constructs": "10.6.0",
"source-map-support": "0.5.21"
},
"devDependencies": {
"@troyblank/eslint-config-troyblank": "2.4.0",
"@types/chance": "1.1.7",
"@types/aws-lambda": "8.10.161",
"@types/jest": "30.0.0",
"@types/node": "25.5.2",
"aws-cdk": "2.1117.0",
"aws-cdk-lib": "2.248.0",
"aws-lambda": "1.0.7",
"chance": "1.1.13",
"esbuild": "0.28.0",
"jest": "30.3.0",
"ts-jest": "29.4.9",
"typescript": "6.0.2"
},
"author": "Troy Blank",
"license": "BSD-3-Clause"
}