-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
43 lines (43 loc) · 1.51 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
{
"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"
}
}