34 lines
879 B
JSON
34 lines
879 B
JSON
{
|
|
"name": "@omnivore/content-fetch",
|
|
"version": "1.0.0",
|
|
"description": "Service that fetches page content from a URL",
|
|
"main": "build/src/index.js",
|
|
"files": [
|
|
"build/src"
|
|
],
|
|
"dependencies": {
|
|
"bullmq": "^5.1.1",
|
|
"dotenv": "^8.2.0",
|
|
"express": "^4.17.1",
|
|
"ioredis": "^5.3.2",
|
|
"@google-cloud/functions-framework": "^3.0.0",
|
|
"@omnivore/puppeteer-parse": "^1.0.0",
|
|
"@sentry/serverless": "^7.77.0"
|
|
},
|
|
"devDependencies": {
|
|
"chai": "^4.3.6",
|
|
"mocha": "^10.0.0"
|
|
},
|
|
"scripts": {
|
|
"test": "yarn mocha -r ts-node/register --config mocha-config.json",
|
|
"test:typecheck": "tsc --noEmit",
|
|
"lint": "eslint src --ext ts,js,tsx,jsx",
|
|
"build": "tsc",
|
|
"start": "node build/src/app.js",
|
|
"start_gcf": "functions-framework --port=9090 --target=puppeteer"
|
|
},
|
|
"volta": {
|
|
"extends": "../../package.json"
|
|
}
|
|
}
|