-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.92 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
{
"name": "foier",
"version": "1.0.0",
"main": "lib/app.ts",
"repository": "[email protected]:geofflittle/foier.git",
"author": "Geoff Little <[email protected]>",
"license": "MIT",
"scripts": {
"load-copa-cases": "ts-node ./load-copa-cases.ts",
"clean": "rm -rf ./dist ./cdk.out",
"lint": "eslint --fix --max-warnings 0 '**/*.{js,ts}'",
"format": "prettier --write '**/*.{md,js,json,ts,yaml}'",
"backend:build": "tsc",
"infra:deploy": "cdk deploy --require-approval=never",
"deploy": "yarn clean && yarn install --production --modules-folder dist/node_modules && yarn backend:build && yarn infra:deploy"
},
"devDependencies": {
"@aws-cdk/aws-apigateway": "^1.54.0",
"@aws-cdk/aws-apigatewayv2": "^1.54.0",
"@aws-cdk/aws-cloudwatch": "^1.54.0",
"@aws-cdk/aws-cloudwatch-actions": "^1.54.0",
"@aws-cdk/aws-dynamodb": "^1.54.0",
"@aws-cdk/aws-events-targets": "^1.54.0",
"@aws-cdk/aws-lambda": "^1.54.0",
"@aws-cdk/aws-logs": "^1.54.0",
"@aws-cdk/aws-secretsmanager": "^1.54.0",
"@aws-cdk/aws-sns": "^1.54.0",
"@aws-cdk/core": "^1.54.0",
"@types/aws-lambda": "^8.10.57",
"@types/aws4": "^1.5.1",
"@types/axios": "^0.14.0",
"@types/crypto-js": "^3.1.47",
"@types/node": "^14.0.14",
"@typescript-eslint/eslint-plugin": "^3.5.0",
"@typescript-eslint/parser": "^3.5.0",
"aws-sdk": "^2.713.0",
"aws4": "^1.10.0",
"axios": "^0.19.2",
"crypto-js": "^4.0.0",
"eslint": "^7.3.1",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"husky": "^4.2.5",
"prettier": "^2.0.5",
"ts-node": "^8.10.2",
"typescript": "^3.9.6"
},
"dependencies": {
"got": "^11.5.0"
},
"resolutions": {
"lodash": "^4.1.19"
}
}