Reorganized repo using yarn and workspaces

This commit is contained in:
maciejhirsz
2018-06-27 14:04:34 +02:00
parent 8c3b1ee749
commit 0580e25380
84 changed files with 8434 additions and 701 deletions
+19
View File
@@ -0,0 +1,19 @@
{
"version": "0.1.0",
"private": true,
"engines": {
"node": ">=9.5",
"yarn": "^1.3.2"
},
"workspaces": [
"packages/*"
],
"scripts": {
"start:frontend": "scripts/start-frontend.sh",
"start:backend": "scripts/start-backend.sh",
"build:backend": "scripts/build-backend.sh",
"check:backend": "tsc -p packages/backend --noEmit",
"build:shared": "tsc -p packages/shared",
"check:shared": "tsc -p packages/shared --noEmit"
}
}