-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
71 lines (71 loc) · 2.16 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
{
"name": "@openwishlist/preview",
"version": "0.411.0",
"description": "Serverless link preview api",
"main": "index.js",
"scripts": {
"test": "jest",
"deploy": "serverless deploy",
"deploy:dev": "serverless deploy --stage dev",
"deploy:live": "serverless deploy --stage live",
"develop": "serverless offline start",
"db:migrate": "serverless dynamodb migrate",
"db:explorer": "dynamodb-admin",
"doc:generate": "serverless openapi generate -o spec/openapi.json -f json -a 3.0.3",
"doc:convert": "typeconv -f ts -t oapi -o spec/models --oapi-format yml 'src/models/*.ts'",
"watch": "tsc -w",
"lint": "eslint .",
"format": "prettier --config .prettierrc 'src/**/*.ts' 'test/**/*.ts' --write"
},
"keywords": [
"serverless",
"html",
"scraping"
],
"author": "Milind Singh",
"license": "MIT",
"devDependencies": {
"@shelf/jest-dynamodb": "3.4.1",
"@sparticuz/chromium": "109.0.6",
"@types/jest": "29.5.1",
"@types/node": "16.18.30",
"@typescript-eslint/eslint-plugin": "5.59.5",
"@typescript-eslint/parser": "5.59.5",
"aws-sdk": "2.1377.0",
"dynamodb-admin": "4.5.0",
"eslint": "8.40.0",
"jest": "29.5.0",
"prettier": "2.8.8",
"serverless-dynamodb-local": "0.2.40",
"serverless-offline": "12.0.4",
"serverless-openapi-documenter": "0.0.53",
"serverless-plugin-typescript": "npm:@adapttive/serverless-plugin-typescript@2.1.4",
"serverless-tscpaths": "0.0.8",
"ts-jest": "29.1.0",
"ts-node": "10.9.1",
"typeconv": "2.3.0",
"typescript": "4.9.4"
},
"dependencies": {
"@types/lodash": "4.14.194",
"@types/user-agents": "1.0.2",
"aws-lambda": "1.0.7",
"axios": "1.4.0",
"base64url": "3.0.1",
"cheerio": "1.0.0-rc.12",
"config": "3.3.9",
"lodash": "4.17.21",
"puppeteer": "npm:puppeteer-core@19.11.1",
"puppeteer-extra": "3.3.6",
"puppeteer-extra-plugin-adblocker": "^2.13.5",
"puppeteer-extra-plugin-stealth": "2.11.2",
"schema-dts": "1.1.2",
"serverless-api-gateway-throttling": "2.0.3",
"user-agents": "1.0.1379",
"uuid": "9.0.0"
},
"engines": {
"node": "16.x",
"npm": "6.x"
}
}