Files
omnivore/packages/thumbnail-handler/package.json
2023-06-06 11:02:46 +08:00

31 lines
822 B
JSON

{
"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",
"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": {
"chai": "^4.3.6",
"eslint-plugin-prettier": "^4.0.0",
"mocha": "^10.0.0"
},
"dependencies": {
"@google-cloud/functions-framework": "3.1.2",
"@sentry/serverless": "^6.16.1",
"axios": "^1.4.0",
"image-size": "^1.0.2",
"jsonwebtoken": "^9.0.0",
"linkedom": "^0.14.26"
}
}