forked from runfinch/infrastructure
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 912 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
{
"name": "finch-aws-cdk",
"version": "0.1.0",
"bin": {
"finch-aws-cdk": "bin/finch-aws-cdk.js"
},
"scripts": {
"build": "tsc",
"watch": "tsc -w",
"test": "jest -c ./jest.config.unit.js",
"integration": "jest -c ./jest.config.integration.js",
"cdk": "cdk",
"prettier-format": "prettier --config .prettierrc --write 'lib/*.ts' 'bin/*.ts' 'test/*.ts' 'integration_test/*.ts' 'config/*.ts'"
},
"devDependencies": {
"@types/jest": "^27.5.2",
"@types/node": "18.13.0",
"@types/node-fetch": "^2.6.2",
"@types/prettier": "2.7.2",
"aws-cdk": "2.64.0",
"jest": "^27.5.1",
"prettier": "^2.8.4",
"ts-jest": "^27.1.4",
"ts-node": "^10.8.1",
"typescript": "~4.9.5"
},
"dependencies": {
"aws-cdk-lib": "2.64.0",
"axios": "^1.3.3",
"constructs": "^10.1.250",
"node-fetch": "^2.6.7",
"source-map-support": "^0.5.21"
}
}