2019-03-12 06:45:56 +03:00
|
|
|
{
|
2020-08-29 05:46:48 +03:00
|
|
|
"name": "pyright-root",
|
|
|
|
"private": true,
|
2019-03-12 06:45:56 +03:00
|
|
|
"scripts": {
|
2020-08-29 05:46:48 +03:00
|
|
|
"postinstall": "npm run bootstrap",
|
2020-10-15 01:32:07 +03:00
|
|
|
"bootstrap": "node ./build/skipBootstrap.js || lerna bootstrap --no-ci",
|
2020-08-29 05:46:48 +03:00
|
|
|
"clean": "lerna run --no-bail --stream clean",
|
|
|
|
"install:all": "npm install && lerna exec --no-bail npm install",
|
2020-10-13 02:10:25 +03:00
|
|
|
"update:all": "node ./build/updateDeps.js",
|
2020-08-29 05:46:48 +03:00
|
|
|
"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",
|
2020-11-04 03:44:28 +03:00
|
|
|
"check": "npm run check:syncpack && npm run check:eslint && npm run check:prettier && npm run check:lockindent",
|
2020-08-29 05:46:48 +03:00
|
|
|
"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 .",
|
2020-11-04 03:44:28 +03:00
|
|
|
"fix:prettier": "prettier --write .",
|
|
|
|
"check:lockindent": "node ./build/checkLockIndent.js"
|
2019-03-12 06:45:56 +03:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2021-02-26 22:04:03 +03:00
|
|
|
"@types/fs-extra": "^9.0.7",
|
2020-10-13 02:10:25 +03:00
|
|
|
"@types/glob": "^7.1.3",
|
2021-02-26 22:04:03 +03:00
|
|
|
"@types/node": "^12.20.4",
|
|
|
|
"@types/yargs": "^16.0.0",
|
|
|
|
"@typescript-eslint/eslint-plugin": "^4.15.2",
|
|
|
|
"@typescript-eslint/parser": "^4.15.2",
|
2020-11-04 03:44:28 +03:00
|
|
|
"detect-indent": "^6.0.0",
|
2021-02-26 22:04:03 +03:00
|
|
|
"eslint": "^7.20.0",
|
|
|
|
"eslint-config-prettier": "^7.2.0",
|
2020-12-15 02:13:10 +03:00
|
|
|
"eslint-plugin-simple-import-sort": "^7.0.0",
|
2021-02-26 22:04:03 +03:00
|
|
|
"fs-extra": "^9.1.0",
|
2020-10-13 02:10:25 +03:00
|
|
|
"glob": "^7.1.6",
|
2020-08-29 05:46:48 +03:00
|
|
|
"lerna": "^3.22.1",
|
2021-02-26 22:04:03 +03:00
|
|
|
"npm-check-updates": "^11.1.9",
|
2020-10-13 02:10:25 +03:00
|
|
|
"p-queue": "^6.6.2",
|
2020-12-15 02:13:10 +03:00
|
|
|
"prettier": "2.2.1",
|
2021-02-26 22:04:03 +03:00
|
|
|
"syncpack": "^5.7.11",
|
|
|
|
"typescript": "^4.2.2",
|
2020-12-15 02:13:10 +03:00
|
|
|
"yargs": "^16.2.0"
|
2019-03-24 13:31:37 +03:00
|
|
|
}
|
2019-03-12 06:45:56 +03:00
|
|
|
}
|