-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.86 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
55
56
57
58
59
60
61
62
{
"name": "world-indices-monitor-backend",
"version": "0.2.0",
"bin": {
"world-indices-monitor-backend": "bin/world-indices-monitor-backend.ts"
},
"engines": {
"node": ">=16.0.0",
"npm": "please-use-yarn",
"yarn": ">= 1.22.0"
},
"scripts": {
"build": "tsc && webpack",
"cdk": "cdk",
"clearbuildcache": "rm -rf ./build && rm -rf ./bundles",
"deploy": "cdk deploy WorldIndicesMonitorBackendStack --require-approval never",
"eslint": "eslint --ext .js,.jsx,.ts,.tsx .",
"eslint:fix": "yarn run eslint -- --fix",
"invoke": "yarn run template && sam local invoke",
"template": "yarn run build && cdk synth --no-staging > template.yaml",
"test": "jest",
"tsc-watch": "tsc --watch --noemit"
},
"devDependencies": {
"@aws-cdk/assert": "1.70.0",
"@michchan/eslint-config": "1.6.1",
"@michchan/webpack-config-aws-cdk": "^0.3.0",
"@types/aws-lambda": "^8.10.64",
"@types/jest": "^26.0.4",
"@types/lodash": "^4.14.162",
"@types/node": "10.17.27",
"@types/puppeteer": "^3.0.2",
"aws-cdk": "1.70.0",
"eslint": "^7.12.0",
"file-loader": "^6.1.1",
"jest": "^26.0.4",
"puppeteer": "^5.3.1",
"ts-jest": "^26.1.3",
"ts-node": "^8.1.0",
"typescript": "~4.0.3",
"webpack": "^5.3.0",
"webpack-bundle-analyzer": "^3.9.0",
"webpack-cli": "^4.0.0"
},
"dependencies": {
"@aws-cdk/aws-apigateway": "1.70.0",
"@aws-cdk/aws-dynamodb": "1.70.0",
"@aws-cdk/aws-events": "1.70.0",
"@aws-cdk/aws-events-targets": "1.70.0",
"@aws-cdk/aws-iam": "1.70.0",
"@aws-cdk/aws-lambda": "1.70.0",
"@aws-cdk/core": "1.70.0",
"aws-sdk": "^2.778.0",
"axios": "^0.20.0",
"chrome-aws-lambda": "^5.3.1",
"dotenv": "^8.2.0",
"lodash": "^4.17.20",
"puppeteer-core": "^5.3.1",
"simply-utils": "^0.51.0",
"source-map-support": "^0.5.16"
}
}