forked from iodepo/OceanBestPractices
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
109 lines (109 loc) · 3.87 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "ocean-best-practices",
"version": "0.0.1",
"license": "AGPL-3.0-only",
"repository": "github:iodepo/OceanBestPractices",
"bin": {
"ocean-best-practices": "bin/app.js"
},
"scripts": {
"build": "./bin/build.sh",
"cdk:list": "cdk list",
"cdk:dev:deploy": "cdk deploy DevStack && npm run cdk:dev:update-config",
"cdk:dev:destroy": "cdk destroy DevStack",
"cdk:dev:diff": "cdk diff DevStack",
"cdk:dev:update-config": "ts-node bin/update-config.ts dev-obp-cdk",
"cdk:prod:deploy": "cdk deploy ProdStack && npm run cdk:prod:update-config",
"cdk:prod:diff": "cdk diff ProdStack",
"cdk:prod:update-config": "ts-node bin/update-config.ts prod-obp-cdk",
"cdk:staging:deploy": "cdk deploy StagingStack && npm run cdk:staging:update-config",
"cdk:staging:diff": "cdk diff StagingStack",
"cdk:staging:update-config": "ts-node bin/update-config.ts staging-obp-cdk",
"test": "jest",
"test:watch": "jest --watchAll",
"lint": "npm run lint:tsc && npm run lint:eslint",
"lint:eslint": "./bin/eslint-ratchet.sh",
"lint:eslint:ci": "env CI=true npm run lint:eslint",
"lint:tsc": "./bin/tsc-ratchet.sh",
"lint:tsc:ci": "env CI=true npm run lint:tsc"
},
"dependencies": {
"@aws-cdk/aws-apigateway": "1.137.0",
"@aws-cdk/aws-certificatemanager": "1.137.0",
"@aws-cdk/aws-cloudfront": "1.137.0",
"@aws-cdk/aws-cloudfront-origins": "1.137.0",
"@aws-cdk/aws-codepipeline-actions": "1.137.0",
"@aws-cdk/aws-ec2": "1.137.0",
"@aws-cdk/aws-ecr-assets": "1.137.0",
"@aws-cdk/aws-ecs": "1.137.0",
"@aws-cdk/aws-elasticsearch": "1.137.0",
"@aws-cdk/aws-events": "1.137.0",
"@aws-cdk/aws-events-targets": "1.137.0",
"@aws-cdk/aws-iam": "1.137.0",
"@aws-cdk/aws-lambda": "1.137.0",
"@aws-cdk/aws-logs": "1.137.0",
"@aws-cdk/aws-neptune": "1.137.0",
"@aws-cdk/aws-opensearchservice": "1.137.0",
"@aws-cdk/aws-s3": "1.137.0",
"@aws-cdk/aws-s3-deployment": "1.137.0",
"@aws-cdk/aws-s3-notifications": "1.137.0",
"@aws-cdk/aws-secretsmanager": "1.137.0",
"@aws-cdk/aws-sns": "1.137.0",
"@aws-cdk/aws-sns-subscriptions": "1.137.0",
"@aws-cdk/aws-sqs": "1.137.0",
"@aws-cdk/aws-ssm": "1.137.0",
"@aws-cdk/core": "1.137.0",
"@aws-cdk/pipelines": "1.137.0",
"@aws-sdk/client-cloudformation": "^3.37.0",
"@aws-sdk/client-lambda": "^3.43.0",
"@aws-sdk/client-s3": "^3.37.0",
"@aws-sdk/client-sns": "^3.40.0",
"@aws-sdk/client-ssm": "^3.37.0",
"@aws-sdk/signature-v4-crt": "^3.31.0",
"acorn": "^8.0.0",
"aws-sdk": "^2.1032.0",
"crypto-random-string": "^3.3.1",
"got": "^11.8.3",
"got4aws": "^1.2.1",
"lodash": "^4.17.21",
"p-map": "^4.0.0",
"p-timeout": "^4.1.0",
"p-wait-for": "^3.2.0",
"source-map-support": "^0.5.16",
"type-fest": "^2.5.1",
"xml2js": "^0.4.23",
"zod": "^3.11.6"
},
"devDependencies": {
"@aws-sdk/types": "^3.40.0",
"@babel/core": "^7.16.7",
"@babel/preset-env": "^7.16.7",
"@babel/preset-typescript": "^7.16.7",
"@mreal/digest-auth": "^1.1.3",
"@types/aws-lambda": "^8.10.85",
"@types/jest": "^27.0.3",
"@types/lodash": "^4.14.176",
"@types/node": "^14.0.0",
"@types/xml2js": "^0.4.9",
"@typescript-eslint/eslint-plugin": "^5.1.0",
"@typescript-eslint/parser": "^5.1.0",
"aws-cdk": "1.137.0",
"aws-sdk-client-mock": "^0.5.6",
"babel-jest": "^27.4.5",
"bufferutil": "^4.0.1",
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-import-newlines": "^1.1.5",
"eslint-plugin-promise": "^5.1.1",
"eslint-plugin-unicorn": "^37.0.1",
"jest": "^27.3.1",
"nock": "^13.2.1",
"ts-loader": "^9.2.6",
"ts-node": "^9.1.1",
"typescript": "^4.5.2",
"utf-8-validate": "^5.0.2",
"webpack": "^5.62.2",
"webpack-cli": "^4.9.1"
}
}