diff --git a/.gitignore b/.gitignore index 90399065..7c2f76f5 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,5 @@ .DS_Store .vercel +node_modules +yarn.lock diff --git a/common/package.json b/common/package.json index 1219c8f0..29b7e33d 100644 --- a/common/package.json +++ b/common/package.json @@ -1,5 +1,5 @@ { - "name": "mantic-common", + "name": "common", "private": true, "scripts": {}, "dependencies": { diff --git a/package.json b/package.json new file mode 100644 index 00000000..098f9cce --- /dev/null +++ b/package.json @@ -0,0 +1,12 @@ +{ + "name": "mantic", + "private": true, + "workspaces": [ + "common", + "functions", + "web" + ], + "scripts": {}, + "dependencies": {}, + "devDependencies": {} +} diff --git a/web/package.json b/web/package.json index 9bcede3d..6f1a621c 100644 --- a/web/package.json +++ b/web/package.json @@ -1,5 +1,5 @@ { - "name": "mantic", + "name": "web", "private": true, "scripts": { "dev": "concurrently -n NEXT,TS -c magenta,cyan \"next dev -p 3000\" \"yarn ts --watch\"",