Add versions to sub package.json files

This commit is contained in:
James Grugett 2022-02-01 15:21:56 -06:00
parent 0283da7ed9
commit daf511b9a6
3 changed files with 3 additions and 0 deletions

View File

@ -1,5 +1,6 @@
{
"name": "common",
"version": "1.0.0",
"private": true,
"scripts": {},
"dependencies": {

View File

@ -1,5 +1,6 @@
{
"name": "functions",
"version": "1.0.0",
"scripts": {
"build": "tsc",
"watch": "tsc -w",

View File

@ -1,5 +1,6 @@
{
"name": "web",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "concurrently -n NEXT,TS -c magenta,cyan \"next dev -p 3000\" \"yarn ts --watch\"",