-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.2 KB
/
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
36
37
38
39
{
"name": "hooktrack2",
"version": "0.1.0",
"bin": {
"hooktrack2": "bin/hooktrack2.js"
},
"scripts": {
"postinstall": "(cd lambda && npm install); (cd front && npm install)",
"build": "tsc && (cd front && npm run build)",
"format": "prettier --write .",
"test": "prettier --check **/*.ts && npm run build && cdk synth",
"e2e-test": "npm run build && mocha -r source-map-support/register test/e2e.test",
"cdk": "cdk",
"deploy": "npm test && cdk deploy"
},
"devDependencies": {
"@aws-cdk/aws-apigateway": "1.183.0",
"@aws-cdk/aws-cloudfront": "^1.183.0",
"@aws-cdk/aws-dynamodb": "1.183.0",
"@aws-cdk/aws-iam": "^1.183.0",
"@aws-cdk/aws-lambda": "1.183.0",
"@aws-cdk/aws-s3": "^1.183.0",
"@aws-cdk/aws-s3-deployment": "^1.183.0",
"@aws-cdk/core": "1.183.0",
"@types/aws-lambda": "^8.10.109",
"@types/aws-sdk": "^2.7.0",
"@types/mocha": "^10.0.1",
"@types/node": "^18.11.15",
"@types/node-fetch": "^2.6.2",
"@types/uuid": "^9.0.0",
"aws-cdk": "^1.183.0",
"mocha": "^10.2.0",
"node-fetch": "^2.6.1",
"prettier": "^2.8.1",
"source-map-support": "^0.5.21",
"ts-node": "^10.9.1",
"typescript": "^4.9.4"
}
}