monorepo-typescript
Version:
Typescript monorepo with workspaces and npm(not yarn). Forked js repo and making to do ts repo with workspaces. To work with npm need npm version 7 or higher. https://stackoverflow.com/questions/46947557/do-yarn-workspaces-work-with-npm-too https://
21 lines (20 loc) • 564 B
JSON
{
"name": "monorepo-typescript",
"version": "2.0.10",
"license": "ISC",
"author": "EugeneKvach",
"workspaces": [
"./packages/*"
],
"scripts": {
"build:app": "npm run build --prefix packages/app",
"build:types": "npm run build --prefix packages/types",
"build:helpers": "npm run build --prefix packages/helpers",
"build:all": "npm run build:app & npm run build:types & npm run build:helpers",
"start": "npm run start:app --prefix packages/app"
},
"dependencies": {
"typescript": "^4.1.3"
},
"devDependencies": {}
}