Files
DefinitelyTyped-tools/package.json
Nathan Shively-Sanders cc66601b2f Update typescript eslint at root (#617)
* Update typescript-eslint dependencies at root

Looks like overnight runs are mistakenly using typescript-eslint/*@4
when they should be on 5 to have access to the cache-clearing function.
Try upgrading the dev version of typescript-eslint to 5 to see if that
fixes it.

* Add missing dependency

Makes lint succeed.
2023-02-27 08:56:14 -08:00

34 lines
877 B
JSON

{
"name": "definitelytyped-tools",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"prepare": "lerna bootstrap --no-ci",
"pretest": "yarn build",
"lint": "eslint . --ext .ts",
"format": "prettier --write 'packages/**/*.ts'",
"test": "jest",
"build": "tsc -b .",
"retag": "node packages/retag/dist/retag.js"
},
"devDependencies": {
"@types/jest": "^25.1.3",
"@types/node": "^14.14.37",
"@types/yargs": "^15.0.4",
"@typescript-eslint/eslint-plugin": "^5.53.0",
"@typescript-eslint/parser": "^5.53.0",
"eslint": "^7.31.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsdoc": "^30.7.8",
"jest": "^25.1.0",
"lerna": "^4.0.0",
"prettier": "^2.6.2",
"ts-jest": "^25.2.1",
"tslint": "^6.1.2",
"tslint-microsoft-contrib": "^6.2.0",
"typescript": "4.7.4"
}
}