link-stack/apps/metamigo-worker/package.json

56 lines
1.8 KiB
JSON
Raw Normal View History

2023-02-13 12:41:30 +00:00
{
2024-03-16 19:39:20 +01:00
"name": "metamigo-worker",
2023-02-13 12:41:30 +00:00
"version": "0.2.0",
"main": "build/main/index.js",
"type": "module",
2023-02-13 12:41:30 +00:00
"author": "Abel Luck <abel@guardianproject.info>",
"license": "AGPL-3.0-or-later",
"dependencies": {
2024-04-09 11:05:40 +02:00
"graphile-worker": "^0.16.5",
2023-05-25 09:08:39 +00:00
"html-to-text": "^9.0.5",
"node-fetch": "^3",
2024-04-09 11:05:40 +02:00
"pg-promise": "^11.6.0",
"remeda": "^1.57.2",
"twilio": "^5.0.3"
2023-02-13 12:41:30 +00:00
},
"devDependencies": {
2024-03-17 12:58:25 +01:00
"ts-config": "*",
2024-04-09 11:05:40 +02:00
"@babel/core": "7.24.4",
"@babel/preset-env": "7.24.4",
2024-03-20 17:51:21 +01:00
"@babel/preset-typescript": "7.24.1",
"@types/fluent-ffmpeg": "^2.1.24",
2024-02-14 12:13:00 +01:00
"@types/jest": "^29.5.12",
2024-04-09 11:05:40 +02:00
"eslint": "^9.0.0",
2023-09-12 14:33:37 +02:00
"jest": "^29.7.0",
"jest-circus": "^29.7.0",
2023-05-25 09:08:39 +00:00
"jest-junit": "^16.0.0",
2024-03-03 18:13:26 +01:00
"nodemon": "^3.1.0",
2024-04-09 11:05:40 +02:00
"pino-pretty": "^11.0.0",
2024-02-14 12:13:00 +01:00
"prettier": "^3.2.5",
"ts-node": "^10.9.2",
2024-04-09 11:05:40 +02:00
"typedoc": "^0.25.13",
"typescript": "^5.4.4"
2023-02-13 12:41:30 +00:00
},
"nodemonConfig": {
"ignore": [
"docs/*"
],
"ext": "ts,json,js"
},
"scripts": {
2024-03-16 19:39:20 +01:00
"build-xxx": "tsc -p tsconfig.json",
2023-02-13 12:41:30 +00:00
"build-test": "tsc -p tsconfig.json",
"doc:html": "typedoc src/ --exclude '**/*.test.ts' --exclude '**/*.spec.ts' --name $npm_package_name --readme README.md --target es2019 --mode file --out build/docs",
"doc": "yarn run doc:html",
"fix:lint": "eslint src --ext .ts --fix",
"fix:prettier": "prettier \"src/**/*.ts\" --write",
"test:jest": "JEST_CIRCUS=1 jest --coverage --forceExit --detectOpenHandles --reporters=default --reporters=jest-junit",
"test:jest-verbose": "yarn test:jest --verbose --silent=false",
"test": "yarn test:jest",
"lint": "yarn lint:lint && yarn lint:prettier",
"lint:lint": "eslint src --ext .ts",
"lint:prettier": "prettier \"src/**/*.ts\" --list-different",
"watch:test": "yarn test:jest --watchAll"
}
}