Files
pezkuwi-telemetry/package.json
T
Daniel Maricic 20a0283380 Add prettier and format the code (#242)
* prettier

* linter

* add prettier, and format the code

* make the travis pass

Signed-off-by: Daniel Maricic <daniel@woss.io>

* travis to make a build

Signed-off-by: Daniel Maricic <daniel@woss.io>

* tslint and prettier + travis

Signed-off-by: Daniel Maricic <daniel@woss.io>

* useless setting, we use spaces

Signed-off-by: Daniel Maricic <daniel@woss.io>

* backend tests added to the travis

Signed-off-by: Daniel Maricic <daniel@woss.io>
2020-03-31 16:14:48 +02:00

26 lines
650 B
JSON

{
"version": "0.1.0",
"private": true,
"engines": {
"node": ">=9.5",
"yarn": "^1.3.2"
},
"workspaces": [
"packages/*"
],
"resolutions": {
"kind-of": ">=6.0.3"
},
"scripts": {
"deploy": "scripts/deploy.sh",
"build:all": "scripts/build-all.sh",
"check:frontend": "cd packages/frontend; yarn pretty:check",
"check:all": "yarn check:common && yarn check:frontend",
"start:frontend": "scripts/start-frontend.sh",
"build:frontend": "scripts/build-frontend.sh",
"build:common": "tsc -p packages/common",
"check:common": "tsc -p packages/common --noEmit",
"test": "scripts/test.sh"
}
}