BotFramework-Emulator/lerna.json

26 строки
542 B
JSON
Исходник Обычный вид История

{
2018-09-26 01:01:53 +03:00
"lerna": "3.4.0",
"packages": [
"packages/app/client",
"packages/app/main",
Merged PR 4076: Revisit all package.json and lerna setup # Changelog * Put `devDependencies` to root, fixed `package-lock.json` * Removed unnecessary `devDependencies` * Please use `lerna add` from now on, don't use `npm install` or edit `package.json` * To add `jest` as `devDependencies` to `botframework-emulator-shared` package * At root, run `npm install jest --save-dev` followed by `lerna add jest --dev --scope=botframework-emulator-shared` * Please commit `package-lock.json` if you have any changes * Lerna [bug](https://github.com/lerna/lerna/pull/1290) may cause unnecessary changes in `package-lock.json`, `#master` or `@3.0.0` will fix it * Until their next drop, please verify/tweak your changes in `package-lock.json` before committing the file * Bumped all dependencies to latest version * We are on latest `typescript@2.7.2` 🎉 * `electron@1.8.1` * `restify@4.3.2` (@6 now, but their plugins architecture changed) * Scoping internal packages with `@bfemulator` for CI/CD on our NPM feed * `/app/client` (`botframework-emulator-client`) is now `@bfemulator/client` * `/app/shared` (`botframework-emulator-shared`) is now `@bfemulator/app-shared` * Revisited all `.gitignore` files * Added `npm test` scripts to all `package.json`, by default, use `jest` * Temporarily added `react-app-rewired` to mix JSX in TypeScript React app (broken since `react-scripts-ts@>2.9.0`) * [Tracking bug](https://github.com/wmonk/create-react-app-typescript/issues/266) at `react-scripts-ts`, their [next drop](https://github.com/wmonk/create-react-app-typescript/pull/242) should have it # Notes Added few TypeScript ignores because: * Some typings are wrong (added `skipLibCheck`) * Some typings are outdated (using `any` type)
2018-03-01 00:56:09 +03:00
"packages/app/shared",
"packages/sdk/client",
"packages/sdk/shared",
"packages/sdk/ui-react",
"packages/extensions/qnamaker",
"packages/extensions/qnamaker/client",
"packages/extensions/luis",
"packages/extensions/luis/client",
"packages/extensions/json",
"packages/tools"
],
"command": {
"bootstrap": {
"nohoist": [
"@microsoft/bf-chatdown"
]
}
},
"version": "independent"
}