omnivore/packages/rule-handler/package.json

31 lines
819 B
JSON
Raw Normal View History

2022-11-18 08:13:49 +00:00
{
2022-11-19 03:15:26 +00:00
"name": "@omnivore/rule-handler",
2022-11-18 08:13:49 +00:00
"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",
2022-11-19 03:15:26 +00:00
"start": "functions-framework --target=ruleHandler",
2022-11-21 02:36:41 +00:00
"dev": "concurrently \"tsc -w\" \"nodemon --watch ./build/ --exec npm run start\""
2022-11-18 08:13:49 +00:00
},
"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": "^0.27.2",
2022-11-18 09:43:21 +00:00
"dotenv": "^16.0.1",
2022-11-22 04:12:12 +00:00
"jsonwebtoken": "^8.5.1",
"search-query-parser": "^1.6.0"
2022-11-18 08:13:49 +00:00
}
}