2022-02-11 21:55:50 -05:00
|
|
|
{
|
|
|
|
"name": "@iptv-org/database",
|
|
|
|
"scripts": {
|
|
|
|
"act:check": "act pull_request -W .github/workflows/check.yml",
|
2023-10-06 22:14:34 -04:00
|
|
|
"act:update": "act workflow_dispatch -W .github/workflows/update.yml",
|
2022-02-11 21:55:50 -05:00
|
|
|
"act:deploy": "act push -W .github/workflows/deploy.yml",
|
2023-10-06 22:14:34 -04:00
|
|
|
"db:validate": "ts-node scripts/db/validate.ts",
|
|
|
|
"db:export": "ts-node scripts/db/export.ts",
|
|
|
|
"db:update": "ts-node scripts/db/update.ts",
|
|
|
|
"lint": "npx eslint ./scripts/**/*.ts ./scripts/**/*.js ./tests/**/*.ts",
|
|
|
|
"test": "jest --runInBand"
|
2022-02-11 21:55:50 -05:00
|
|
|
},
|
2022-02-17 09:50:24 -05:00
|
|
|
"pre-commit": [
|
2022-02-17 05:13:40 -05:00
|
|
|
"db:validate"
|
|
|
|
],
|
2022-02-11 21:55:50 -05:00
|
|
|
"private": true,
|
|
|
|
"author": "Arhey",
|
2023-10-06 22:14:34 -04:00
|
|
|
"jest": {
|
|
|
|
"transform": {
|
|
|
|
"^.+\\.(ts|js)$": "ts-jest"
|
|
|
|
},
|
|
|
|
"testRegex": "tests/(.*?/)?.*test.(js|ts)$"
|
|
|
|
},
|
2022-02-11 21:55:50 -05:00
|
|
|
"dependencies": {
|
2023-10-06 22:14:34 -04:00
|
|
|
"@freearhey/core": "^0.2.1",
|
2022-04-11 16:30:28 -04:00
|
|
|
"@joi/date": "^2.1.0",
|
2023-10-06 22:14:34 -04:00
|
|
|
"@json2csv/formatters": "^7.0.3",
|
|
|
|
"@json2csv/node": "^7.0.3",
|
|
|
|
"@json2csv/transforms": "^7.0.3",
|
2023-04-08 20:37:29 -04:00
|
|
|
"@octokit/core": "^4.2.0",
|
|
|
|
"@octokit/plugin-paginate-rest": "^6.0.0",
|
2023-10-06 22:14:34 -04:00
|
|
|
"@octokit/plugin-rest-endpoint-methods": "^7.1.3",
|
|
|
|
"@types/jest": "^29.5.5",
|
|
|
|
"@typescript-eslint/eslint-plugin": "^6.7.4",
|
2022-02-11 21:55:50 -05:00
|
|
|
"chalk": "^4.1.2",
|
|
|
|
"commander": "^9.0.0",
|
|
|
|
"csvtojson": "^2.0.10",
|
2023-10-06 22:14:34 -04:00
|
|
|
"eslint": "^8.50.0",
|
|
|
|
"eslint-config-prettier": "^9.0.0",
|
|
|
|
"jest": "^29.7.0",
|
2022-02-11 21:55:50 -05:00
|
|
|
"joi": "^17.6.0",
|
2022-02-17 09:50:24 -05:00
|
|
|
"pre-commit": "^1.2.2",
|
2023-10-06 22:14:34 -04:00
|
|
|
"ts-jest": "^29.1.1",
|
|
|
|
"ts-node": "^10.9.1"
|
2022-02-11 21:55:50 -05:00
|
|
|
}
|
|
|
|
}
|