-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
53 lines (53 loc) · 1.26 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
{
"name": "porter",
"version": "1.0.0",
"license": "AGPL-3.0",
"private": "true",
"engines": {
"node": ">= 22.0.0"
},
"repository": {
"type": "git",
"url": "git://github.com/PRX/Porter.git"
},
"dependencies": {
"@aws-sdk/client-cloudwatch": "*",
"@aws-sdk/client-eventbridge": "*",
"@aws-sdk/client-s3": "*",
"@aws-sdk/client-sfn": "*",
"@aws-sdk/client-sns": "*",
"@aws-sdk/client-sqs": "*",
"@aws-sdk/client-sts": "*",
"@aws-sdk/client-transcribe": "*",
"@aws-sdk/lib-storage": "*",
"@google-cloud/storage": "*",
"@smithy/node-http-handler": "*",
"@smithy/util-retry": "*",
"@tokenizer/s3": "*",
"file-type": "*",
"porter-util": "file:./lib/porter-util",
"prx-wavefile": "*",
"sharp": "*"
},
"devDependencies": {
"@prettier/plugin-ruby": "*",
"dotenv": "*",
"eslint": "^8",
"eslint-config-airbnb-base": "*",
"eslint-config-prettier": "*",
"eslint-plugin-import": "*",
"eslint-plugin-jest": "*",
"eslint-plugin-prettier": "*",
"jest": "*",
"prettier": "*",
"typescript": "*",
"yaml-cfn": "*"
},
"scripts": {
"eslint": "eslint",
"jest": "jest",
"prettier": "prettier",
"test": "npm run jest",
"tsc": "tsc"
}
}