thunderhub/package.json
Anthony Potdevin 22196e8468
Feat/v0.2.0 (#19)
* chore: bump version

* style: password field changes

* Feat/lerna integration (#17)

* chore: move into package folder

* chore: initial lerna setup

* chore: yarn lock cleanup

* chore: package organization

* chore: yarn lock update

* chore: update packages

* chore: wip lerna integration

* chore: downgrade date-fns

* chore: lerna cleanup

* chore: add env file

* docs: update README

* chore: organize configs

* Feat/hodlhodl integration (#18)

* feat: hodl integration start

* chore: add pagination and more

* chore: change filter flow

* chore: change offer card ui

* chore: more offer card changes

* chore: small refactors and stylings

* v0.2.0

* docs: update README
2020-04-08 20:06:59 +02:00

32 lines
710 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:run": "lerna run start --stream --scope @thunderhub/server"
},
"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"
}
}
}