fp/services/factory/package.json

48 lines
1.4 KiB
JSON
Raw Normal View History

2024-08-10 00:28:37 +00:00
{
2024-11-05 19:48:21 +00:00
"name": "@futureporn/factory",
2024-08-10 00:28:37 +00:00
"type": "module",
2024-10-02 17:38:24 +00:00
"version": "2.0.0",
2024-08-10 00:28:37 +00:00
"description": "",
"main": "src/index.ts",
"scripts": {
2024-11-05 19:48:21 +00:00
"test": "mocha",
2024-08-10 00:28:37 +00:00
"dev": "pnpm run dev.nodemon # yes this is crazy to have nodemon execute tsx, but it's the only way I have found to get live reloading in TS/ESM/docker with Graphile Worker's way of loading tasks",
"dev.tsx": "tsx ./src/index.ts",
"dev.nodemon": "nodemon --ext ts --exec \"pnpm run dev.tsx\"",
"dev.node": "node --no-warnings=ExperimentalWarning --loader ts-node/esm src/index.ts"
},
"keywords": [
"transcode",
"transcoding",
"process",
2024-10-02 17:38:24 +00:00
"processing",
"build",
"factory"
2024-08-10 00:28:37 +00:00
],
"author": "@cj_clippy",
"license": "Unlicense",
"dependencies": {
2024-09-03 16:28:39 +00:00
"@aws-sdk/client-s3": "^3.637.0",
"@aws-sdk/lib-storage": "^3.637.0",
2024-09-06 05:39:08 +00:00
"@futureporn/fetchers": "workspace:^",
2024-09-03 16:28:39 +00:00
"@futureporn/storage": "workspace:^",
"@futureporn/utils": "workspace:^",
2024-08-10 00:28:37 +00:00
"@paralleldrive/cuid2": "^2.2.2",
2024-11-05 19:48:21 +00:00
"@types/chai": "^4.3.19",
"@types/mocha": "^10.0.7",
2024-09-03 16:28:39 +00:00
"@types/node": "^22.5.2",
2024-11-05 19:48:21 +00:00
"chai": "^5.1.1",
2024-08-10 00:28:37 +00:00
"dotenv": "^16.4.5",
2024-11-05 19:48:21 +00:00
"graphile-config": "0.0.1-beta.9",
2024-08-10 00:28:37 +00:00
"graphile-worker": "^0.16.6",
2024-10-02 17:38:24 +00:00
"p-retry": "^6.2.0"
2024-08-10 00:28:37 +00:00
},
"devDependencies": {
"@futureporn/types": "workspace:^",
2024-10-02 17:38:24 +00:00
"mocha": "^10.7.3",
2024-08-10 00:28:37 +00:00
"nodemon": "^3.1.4",
"ts-node": "^10.9.2",
2024-09-03 16:28:39 +00:00
"tsx": "^4.19.0"
2024-08-10 00:28:37 +00:00
}
}