pyright/package.json
Jake Bailey 48a5f12840
Update deps, better ignore .git, bump to ES2019, fix case problem (#1860)
Co-authored-by: HeeJae Chang <hechang@microsoft.com>
2021-05-14 12:02:43 -07:00

44 lines
1.8 KiB
JSON

{
"name": "pyright-root",
"private": true,
"scripts": {
"postinstall": "npm run bootstrap",
"bootstrap": "node ./build/skipBootstrap.js || lerna bootstrap --no-ci",
"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/fs-extra": "^9.0.11",
"@types/glob": "^7.1.3",
"@types/node": "^12.20.13",
"@types/yargs": "^16.0.1",
"@typescript-eslint/eslint-plugin": "^4.23.0",
"@typescript-eslint/parser": "^4.23.0",
"detect-indent": "^6.0.0",
"eslint": "^7.26.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"fs-extra": "^9.1.0",
"glob": "^7.1.7",
"lerna": "^3.22.1",
"npm-check-updates": "^11.5.12",
"p-queue": "^6.6.2",
"prettier": "2.3.0",
"syncpack": "^5.7.11",
"typescript": "^4.2.4",
"yargs": "^16.2.0"
}
}