This commit is contained in:
a.bouhuolia
2023-03-07 23:20:14 +02:00
parent 19191ac089
commit e5ac758d7f
2 changed files with 8 additions and 10 deletions

View File

@@ -8,7 +8,8 @@
"dev:webapp": "lerna run dev --scope \"@bigcapital/webapp\"",
"build:webapp": "lerna run build --scope \"@bigcapital/webapp\"",
"dev:server": "lerna run dev --scope \"@bigcapital/server\"",
"build:server": "lerna run build --scope \"@bigcapital/server\""
"build:server": "lerna run build --scope \"@bigcapital/server\"",
"prepare": "husky install"
},
"workspaces": [
"packages/*",
@@ -17,11 +18,17 @@
"devDependencies": {
"@commitlint/config-conventional": "^17.4.2",
"@commitlint/config-lerna-scopes": "^17.4.2",
"husky": "^8.0.3",
"lerna": "^6.4.1",
"@commitlint/cli": "^17.4.2"
},
"engines": {
"node": "14.x"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"dependencies": {}
}

View File

@@ -1,9 +0,0 @@
{
"buildCommand": "npm run build:webapp",
"devCommand": "npm run dev:webapp",
"installCommand": "yarn install && yarn bootstrap",
"outputDirectory": "packages/webapp/build",
"env": {
"CI": "false"
}
}