-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.29 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.29 KB
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
{
"name": "listing-scraper",
"version": "1.0.0",
"repository": "git@github.com:MATATAT/listing-scraper.git",
"author": "Matt Macdonald <kholdstare99@gmail.com>",
"license": "MIT",
"type": "module",
"scripts": {
"build": "webpack",
"start": "node ./dist/index.js ./dist/config.json",
"test": "jest tests",
"clean": "rm ./dist/*"
},
"devDependencies": {
"@babel/core": "^7.18.0",
"@babel/preset-env": "^7.18.0",
"@babel/preset-typescript": "^7.17.12",
"@types/aws-lambda": "^8.10.97",
"@types/ejs": "^3.1.1",
"@types/jest": "^27.5.1",
"@types/node": "^17.0.35",
"@typescript-eslint/eslint-plugin": "^5.25.0",
"@typescript-eslint/parser": "^5.25.0",
"babel-jest": "^28.1.0",
"copy-webpack-plugin": "^11.0.0",
"eslint": "^8.16.0",
"jest": "^28.1.0",
"ts-jest": "^28.0.2",
"ts-loader": "^9.3.0",
"ts-node": "^10.8.0",
"typescript": "^4.6.4",
"webpack": "^5.72.1",
"webpack-cli": "^4.9.2"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.100.0",
"@aws-sdk/client-ses": "^3.112.0",
"@aws-sdk/signature-v4-crt": "^3.110.0",
"ejs": "^3.1.8",
"got": "^12.1.0"
}
}