mirror of
https://github.com/apotdevin/thunderhub.git
synced 2024-11-19 09:50:03 +01:00
34 lines
837 B
JSON
34 lines
837 B
JSON
{
|
|
"name": "root",
|
|
"private": true,
|
|
"scripts": {
|
|
"server:dev": "lerna run build:dev --stream --scope @thunderhub/server",
|
|
"server:prod": "lerna run build --stream --scope @thunderhub/server",
|
|
"server:start": "lerna run start --stream --scope @thunderhub/server",
|
|
"deploy": "lerna run deploy --stream",
|
|
"version:bump": "lerna version --allow-branch master --conventional-commits"
|
|
},
|
|
"workspaces": {
|
|
"packages": [
|
|
"client",
|
|
"server"
|
|
]
|
|
},
|
|
"dependencies": {
|
|
"base64url": "^3.0.1",
|
|
"date-fns": "^2.0.0-beta.5",
|
|
"graphql": "^14.6.0"
|
|
},
|
|
"devDependencies": {
|
|
"husky": "^4.2.3",
|
|
"lerna": "^3.20.2",
|
|
"prettier": "2.0.2",
|
|
"pretty-quick": "^2.0.1"
|
|
},
|
|
"husky": {
|
|
"hooks": {
|
|
"pre-commit": "npx lerna run --concurrency 1 --stream precommit"
|
|
}
|
|
}
|
|
}
|