-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
68 lines (68 loc) · 1.91 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
{
"name": "openaq-lcs-fetch",
"version": "1.0.0",
"main": "fetcher/index.js",
"repository": {
"type": "git",
"url": "https://github.com/openaq/openaq-lcs-fetch.git"
},
"author": {
"name": "OpenAQ",
"email": "[email protected]",
"url": "https://openaq.org"
},
"contributors": [
{
"name": "Nick Ingalls",
"email": "[email protected]"
},
{
"name": "Anthony Lukach",
"email": "[email protected]"
},
{
"name": "Russ Biggs",
"email": "[email protected]"
}
],
"license": "MIT",
"scripts": {
"test": "tape test/**.test.js | tap-dot",
"lint": "eslint 'fetcher/*.js' 'fetcher/!(node_modules)/**/*.js' scheduler/**/*.js",
"doc": "documentation serve -w fetcher/**/*.js"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.523.0",
"@aws-sdk/client-secrets-manager": "^3.523.0",
"@aws-sdk/client-sns": "^3.521.0",
"@aws-sdk/client-sqs": "^3.525.0",
"@smithy/node-http-handler": "^2.4.1",
"csv-parser": "^3.0.0",
"csv-writer": "^1.6.0",
"dayjs": "^1.11.10",
"dotenv": "^16.4.5",
"geo-tz": "^8.0.1",
"googleapis": "133",
"p-limit": "3.1.0",
"request": "^2.88.2"
},
"devDependencies": {
"@babel/eslint-parser": "^7.23.10",
"@babel/plugin-syntax-class-properties": "^7.12.13",
"@types/node": "20.11.20",
"ajv": "^8.12.0",
"aws-cdk": "^2.129.0",
"aws-cdk-lib": "^2.129.0",
"constructs": "^10.3.0",
"documentation": "^14.0.3",
"eslint": "^8.56.0",
"eslint-plugin-node": "^11.1.0",
"tap-dot": "^1.0.0",
"tape": "^5.7.5",
"ts-node": "^10.9.2",
"typescript": "~5.3.3"
},
"engines": {
"node": "20"
}
}