fp/services/scout/package.json

86 lines
2.6 KiB
JSON
Raw Normal View History

2024-05-27 22:20:58 +00:00
{
2024-07-15 16:07:04 +00:00
"name": "@futureporn/scout",
2024-05-27 22:20:58 +00:00
"type": "module",
2024-07-16 10:46:44 +00:00
"version": "4.0.1",
2024-06-04 23:06:47 +00:00
"description": "vtuber data acquisition",
2024-07-10 02:34:23 +00:00
"exports": {
2024-07-28 00:42:09 +00:00
"./*.ts": "./src/*.ts"
2024-07-10 02:34:23 +00:00
},
2024-05-27 22:20:58 +00:00
"scripts": {
2024-08-27 07:11:24 +00:00
"build": "tsup",
2024-07-28 00:42:09 +00:00
"test": "pnpm run test.unit && pnpm run test.integration",
"test.unit": "mocha --require ts-node/register src/**/*.spec.ts -g unit",
"test.integration": "mocha --require ts-node/register src/**/*.spec.ts -g integration",
2024-08-27 07:11:24 +00:00
"dev": "nodemon --ext js,ts,json,yaml --exec \"node --import tsx --disable-warning=ExperimentalWarning ./src/index.ts\"",
"start": "node ./dist/index.cjs",
2024-07-16 10:46:44 +00:00
"clean": "rm -rf dist",
"superclean": "rm -rf node_modules && rm -rf pnpm-lock.yaml && rm -rf dist"
2024-05-27 22:20:58 +00:00
},
"keywords": [],
"author": "@CJ_Clippy",
"license": "Unlicense",
"dependencies": {
2024-08-27 07:11:24 +00:00
"@aws-sdk/client-s3": "^3.637.0",
"@aws-sdk/lib-storage": "^3.637.0",
"@aws-sdk/s3-request-presigner": "^3.637.0",
"@fastify/static": "^7.0.4",
"@fastify/swagger": "^8.15.0",
"@fastify/swagger-ui": "^4.1.0",
2024-07-16 10:46:44 +00:00
"@futureporn/types": "workspace:*",
2024-06-04 23:06:47 +00:00
"@paralleldrive/cuid2": "^2.2.2",
2024-08-27 07:11:24 +00:00
"@temporalio/client": "^1.11.1",
"@temporalio/worker": "^1.11.1",
"@temporalio/workflow": "^1.11.1",
2024-06-12 04:28:36 +00:00
"@tsconfig/node20": "^20.1.4",
2024-08-27 07:11:24 +00:00
"@types/imapflow": "^1.0.19",
2024-09-03 16:28:39 +00:00
"@types/node": "^22.5.2",
"@types/pg": "^8.11.8",
"cheerio": "1.0.0",
2024-05-27 22:20:58 +00:00
"concurrently": "^8.2.2",
2024-06-01 02:43:44 +00:00
"date-fns": "^3.6.0",
2024-05-27 22:20:58 +00:00
"dotenv": "^16.4.5",
2024-08-27 07:11:24 +00:00
"fastify": "^4.28.1",
2024-05-27 22:20:58 +00:00
"fastq": "^1.17.1",
"faye": "^1.4.0",
2024-06-04 23:06:47 +00:00
"htmlparser2": "^9.1.0",
2024-08-27 07:11:24 +00:00
"imapflow": "^1.0.164",
"js-yaml": "^4.1.0",
2024-09-03 16:28:39 +00:00
"limiter": "2.1.0",
2024-05-27 22:20:58 +00:00
"mailparser": "^3.7.1",
2024-08-27 07:11:24 +00:00
"node-fetch": "^3.3.2",
"openapi-backend": "^5.10.6",
2024-09-03 16:28:39 +00:00
"p-retry": "^6.2.0",
"pg": "8.12.0",
"prevvy": "^8.0.1",
2024-08-27 07:11:24 +00:00
"qs": "^6.13.0",
"rate-limiter-flexible": "^5.0.3",
"sharp": "^0.33.5",
2024-06-01 02:43:44 +00:00
"slugify": "^1.6.6",
2024-08-27 07:11:24 +00:00
"swagger-editor-dist": "^4.13.1",
"swagger-ui-dist": "^5.17.14",
2024-08-31 10:42:28 +00:00
"ts-json-schema-generator": "^2.3.0",
2024-09-03 16:28:39 +00:00
"tsx": "^4.19.0",
2024-08-31 10:42:28 +00:00
"typescript-json-schema": "^0.65.1",
2024-05-27 22:20:58 +00:00
"xpath": "^0.0.34"
},
2024-08-27 07:11:24 +00:00
"packageManager": "pnpm@9.6.0",
2024-05-27 22:20:58 +00:00
"devDependencies": {
2024-08-27 07:11:24 +00:00
"@babel/preset-env": "^7.25.4",
2024-07-28 00:42:09 +00:00
"@babel/preset-typescript": "^7.24.7",
2024-07-23 02:59:41 +00:00
"@futureporn/utils": "workspace:^",
2024-09-03 16:28:39 +00:00
"@types/chai": "^4.3.19",
2024-07-16 06:57:27 +00:00
"@types/cheerio": "^0.22.35",
"@types/mailparser": "^3.4.4",
2024-07-14 18:38:59 +00:00
"@types/mocha": "^10.0.7",
2024-07-28 00:42:09 +00:00
"@types/sinon": "^17.0.3",
2024-08-27 07:11:24 +00:00
"chai": "^5.1.1",
2024-07-28 00:42:09 +00:00
"esmock": "^2.6.7",
2024-08-27 07:11:24 +00:00
"mocha": "^10.7.3",
2024-07-16 06:57:27 +00:00
"nodemon": "^3.1.4",
2024-09-03 16:28:39 +00:00
"sinon": "^18.0.0",
2024-07-14 16:22:30 +00:00
"ts-node": "^10.9.2",
2024-08-27 07:11:24 +00:00
"tsup": "^8.2.4",
"typescript": "^5.5.4"
2024-05-27 22:20:58 +00:00
}
}