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://
27 lines (25 loc) • 585 B
JSON
{
"name": "@monorepo-typescript/app",
"version": "2.0.10",
"main": "dist/index.ts",
"types": "dist/index.d.ts",
"license": "ISC",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/euhoo/monorepo-typescript.git",
"directory": "packages/app"
},
"scripts": {
"build": "tsc",
"start:app": "ts-node-dev index.ts",
"//prepare": "npm run build"
},
"dependencies": {
"ts-node-dev": "^1.1.1",
"@monorepo-typescript/types": "^2.0.0",
"@monorepo-typescript/helpers": "^2.0.0"
}
}