mirror of
https://github.com/pezkuwichain/pezkuwi-telemetry.git
synced 2026-04-25 12:58:01 +00:00
20a0283380
* 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>
26 lines
650 B
JSON
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"
|
|
}
|
|
}
|