Files
omnivore/packages/content-fetch/package.json
2024-08-21 12:24:35 +08:00

35 lines
868 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": {
"@google-cloud/storage": "^7.0.1",
"@omnivore/puppeteer-parse": "^1.0.0",
"@omnivore/utils": "1.0.0",
"bullmq": "^5.1.1",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-async-handler": "^1.2.0",
"posthog-node": "^3.6.3"
},
"devDependencies": {
"@types/express": "^4.17.1",
"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"
},
"volta": {
"extends": "../../package.json"
}
}