{ "name": "root", "version": "0.0.1", "private": true, "license": "MIT", "scripts": { "prepare": "patch-package", "build": "rm -rf ./dist && tsc -p ./tsconfig.prod.json && (cd packages/client/ && yarn build)", "tsc": "tsc -p . --noEmit && tsc -p ./tsconfig.prod.json --noEmit", "tslint": "tslint -p ./tsconfig.json -e 'node_modules/**/*' -e '**/node_modules/**/*' 'packages/**/*.ts'", "tslint:fix": "tslint --fix --format stylish -p ./tsconfig.json -e 'node_modules/**/*' -e '**/node_modules/**/*' 'packages/**/*.ts'", "format": "prettier --list-different '**/*.{ts,tsx,json,md,gql}'", "format:fix": "prettier --write '**/*.{ts,tsx,json,md,gql}'", "test": "yarn format && yarn tslint && yarn tsc && yarn test:jest", "test:fix": "yarn format:fix && yarn tslint:fix && yarn tsc && yarn test:jest", "test:jest": "jest --runInBand --bail", "test:jest:update": "jest --runInBand --bail -u", "test:jest:cov": "jest --runInBand --bail --coverage", "prepublishOnly": "yarn test && yarn build" }, "devDependencies": { "@types/dotenv": "^6.1.0", "@types/jest": "^24.0.11", "dotenv": "^6.2.0", "jest": "^24.5.0", "lerna": "^3.4.3", "patch-package": "^5.1.1", "prettier": "^1.15.2", "ts-jest": "^24.0.1", "ts-node": "^7.0.1", "tsconfig-paths": "^3.7.0", "tslint": "^5.11.0", "typescript": "^3.1.6", "typestrict": "^1.0.1", "wsrun": "^5.0.0" }, "workspaces": [ "packages/*" ], "dependencies": { "typecov": "^0.2.1" } }