mirror of
https://github.com/OpenBankProject/OBP-TypeScript.git
synced 2026-02-06 10:48:07 +00:00
53 lines
1.2 KiB
JSON
53 lines
1.2 KiB
JSON
{
|
|
"name": "obp-typescript",
|
|
"version": "1.0.0",
|
|
"license": "MIT",
|
|
"scripts": {
|
|
"build": "tsc && tsc-alias",
|
|
"test": "jest --setupFiles dotenv/config",
|
|
"lint": "yarn prettier --w . && yarn eslint src __tests__"
|
|
},
|
|
"dependencies": {
|
|
"dotenv": "^16.0.3",
|
|
"global": "^4.4.0",
|
|
"multer": "^1.4.5-lts.1",
|
|
"superagent": "^8.0.9"
|
|
},
|
|
"devDependencies": {
|
|
"@jest/globals": "^29.3.1",
|
|
"@types/jest": "^29.2.3",
|
|
"@types/superagent": "^4.1.16",
|
|
"@typescript-eslint/eslint-plugin": "^5.45.0",
|
|
"@typescript-eslint/parser": "^5.45.0",
|
|
"eslint": "^8.28.0",
|
|
"eslint-plugin-jest": "^27.1.6",
|
|
"eslint-plugin-tsdoc": "^0.2.17",
|
|
"husky": "^8.0.3",
|
|
"jest": "^29.3.1",
|
|
"jest-junit": "^15.0.0",
|
|
"pre-commit": "^1.2.2",
|
|
"prettier": "2.8.0",
|
|
"ts-jest": "^29.0.3",
|
|
"ts-node": "^10.9.1",
|
|
"tsc-alias": "^1.7.1",
|
|
"typedoc": "^0.23.26",
|
|
"typedoc-github-wiki-theme": "^1.0.1",
|
|
"typedoc-plugin-markdown": "^3.14.0",
|
|
"typescript": "^4.9.5",
|
|
"typescript-language-server": "^3.0.3"
|
|
},
|
|
"husky": {
|
|
"hooks": {
|
|
"pre-commit": "lint-staged"
|
|
}
|
|
},
|
|
"lint-staged": {
|
|
"src/**/*.ts": [
|
|
"yarn lint"
|
|
],
|
|
"__tests__/**/*.ts": [
|
|
"yarn lint"
|
|
]
|
|
}
|
|
}
|