omnivore/packages/thumbnail-handler/package.json

38 lines
1,002 B
JSON
Raw Normal View History

2023-06-06 03:02:46 +00:00
{
"name": "@omnivore/thumbnail-handler",
"version": "1.0.0",
"main": "build/src/index.js",
"files": [
"build/src"
],
"license": "Apache-2.0",
"scripts": {
"test": "yarn mocha -r ts-node/register --config mocha-config.json",
"test:typecheck": "tsc --noEmit",
2023-06-06 03:02:46 +00:00
"lint": "eslint src --ext ts,js,tsx,jsx",
"compile": "tsc",
"build": "tsc",
"start": "functions-framework --target=thumbnailHandler",
"dev": "concurrently \"tsc -w\" \"nodemon --watch ./build/ --exec npm run start\""
},
"devDependencies": {
2023-08-11 03:12:03 +00:00
"@types/urlsafe-base64": "^1.0.28",
2023-06-06 03:02:46 +00:00
"chai": "^4.3.6",
"eslint-plugin-prettier": "^4.0.0",
2023-06-07 02:45:46 +00:00
"mocha": "^10.0.0",
"nock": "^13.3.1"
2023-06-06 03:02:46 +00:00
},
"dependencies": {
"@google-cloud/functions-framework": "3.1.2",
"@sentry/serverless": "^7.77.0",
2023-06-06 03:02:46 +00:00
"axios": "^1.4.0",
2023-06-07 03:36:44 +00:00
"dotenv": "^16.0.1",
2023-06-06 03:02:46 +00:00
"image-size": "^1.0.2",
2023-06-07 03:36:44 +00:00
"jsonwebtoken": "^8.5.1",
2024-01-23 05:51:30 +00:00
"linkedom": "^0.14.26"
},
"volta": {
"extends": "../../package.json"
2023-06-06 03:02:46 +00:00
}
}