mirror of
https://github.com/microsoft/pyright.git
synced 2024-11-03 21:30:08 +03:00
4bc49e5ef1
Co-authored-by: Bill Schnurr <bschnurr@microsoft.com> Co-authored-by: HeeJae Chang <hechang@microsoft.com> Co-authored-by: Erik De Bonte <erikd@microsoft.com> Co-authored-by: Rich Chiodo <rchiodo@microsoft.com>
43 lines
1.7 KiB
JSON
43 lines
1.7 KiB
JSON
{
|
|
"name": "pyright-root",
|
|
"private": true,
|
|
"scripts": {
|
|
"postinstall": "npm run bootstrap",
|
|
"bootstrap": "node ./build/skipBootstrap.js || lerna bootstrap",
|
|
"clean": "lerna run --no-bail --stream clean",
|
|
"install:all": "npm install && lerna exec --no-bail npm install",
|
|
"update:all": "node ./build/updateDeps.js",
|
|
"build:extension:dev": "cd packages/vscode-pyright && npm run webpack",
|
|
"build:cli:dev": "cd packages/pyright && npm run webpack",
|
|
"watch:extension": "cd packages/vscode-pyright && npm run webpack-dev",
|
|
"check": "npm run check:syncpack && npm run check:eslint && npm run check:prettier && npm run check:lockindent",
|
|
"check:syncpack": "syncpack list-mismatches",
|
|
"fix:syncpack": "syncpack fix-mismatches --indent \" \" && npm run install:all",
|
|
"check:eslint": "eslint .",
|
|
"fix:eslint": "eslint --fix .",
|
|
"check:prettier": "prettier -c .",
|
|
"fix:prettier": "prettier --write .",
|
|
"check:lockindent": "node ./build/checkLockIndent.js"
|
|
},
|
|
"devDependencies": {
|
|
"@types/glob": "^7.2.0",
|
|
"@types/node": "^17.0.45",
|
|
"@types/yargs": "^16.0.4",
|
|
"@typescript-eslint/eslint-plugin": "^5.43.0",
|
|
"@typescript-eslint/parser": "^5.43.0",
|
|
"detect-indent": "^6.1.0",
|
|
"eslint": "^8.27.0",
|
|
"eslint-config-prettier": "^8.5.0",
|
|
"eslint-plugin-simple-import-sort": "^7.0.0",
|
|
"glob": "^7.2.3",
|
|
"jsonc-parser": "^3.2.0",
|
|
"lerna": "^5.6.2",
|
|
"npm-check-updates": "^16.4.1",
|
|
"p-queue": "^6.6.2",
|
|
"prettier": "2.7.1",
|
|
"syncpack": "^5.8.15",
|
|
"typescript": "~4.4.4",
|
|
"yargs": "^16.2.0"
|
|
}
|
|
}
|