forked from IBM/slack-wrench
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
32 lines (32 loc) · 1.01 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
{
"name": "root",
"private": true,
"scripts": {
"test": "yarn lint && yarn lerna run test",
"lint": "yarn eslint && yarn type",
"eslint": "eslint . --ext .js,.ts --max-warnings 0 --report-unused-disable-directives",
"type": "tsc --noEmit",
"fmt": "pre-commit run --all-files && yarn eslint --fix",
"build": "lerna run tsc",
"cleanbuilds": "yarn cleanBuilds:out && yarn cleanBuilds:buildinfo",
"cleanBuilds:out": "find ./packages -type d -name lib -prune -exec rm -rf {} \\;",
"cleanBuilds:buildinfo": "find ./packages -type f -name tsconfig.build.tsbuildinfo -prune -exec rm {} \\;",
"lerna:version": "lerna version --no-push",
"lerna:publish": "lerna publish from-package"
},
"devDependencies": {
"@types/jest": "^26.0.9",
"@types/node": "^14.0.27",
"eslint": "^7.6.0",
"jest": "^26.3.0",
"lerna": "^3.19.0",
"prettier": "^2.0.5",
"ts-jest": "^26.2.0",
"typescript": "^3.7.3"
},
"workspaces": {
"packages": [
"packages/*"
]
}
}