GildedRose-Refactoring-Kata/TypeScript/package.json
2021-11-11 16:27:17 +01:00

37 lines
905 B
JSON

{
"name": "gilded-rose-kata",
"version": "1.0.0",
"description": "Gilded Rose kata in TypeScript",
"license": "MIT",
"private": true,
"dependencies": {
"@types/jest": "^26.0.24",
"@types/node": "^16.4.13",
"@typescript-eslint/eslint-plugin": "^4.29.0",
"@typescript-eslint/parser": "^4.29.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"jest": "^27.0.6",
"lint-staged": "^11.1.2",
"prettier": "^2.3.2",
"ts-jest": "^27.0.4",
"ts-loader": "^9.2.5",
"typescript": "^4.3.5",
"webpack": "^5.49.0",
"webpack-cli": "^4.7.2"
},
"lint-staged": {
"**/*.ts": [
"eslint src/** --fix --ext",
"git add"
]
},
"scripts": {
"build": "NODE_ENV=production webpack",
"test": "jest",
"format:fix": "eslint src/** --fix",
"format:check": "eslint src/**"
}
}