This repository has been archived by the owner on Jun 2, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
67 lines (67 loc) · 1.79 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "root",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"bootstrap": "lerna bootstrap",
"build": "lerna run build --sort --concurrency=1 --stream",
"clean": "yarn clean:artifacts && yarn clean:packages",
"clean:artifacts": "lerna run clean --parallel",
"clean:packages": "lerna clean --yes",
"codecov": "lerna run codecov",
"format": "prettier-eslint --write \"./packages/**/*.ts\"",
"lint": "standardx \"./packages/**/*.ts\"",
"lint:fix": "standardx --fix \"./packages/**/*.ts\"",
"lint:staged": "lint-staged",
"release:publish": "lerna publish from-git --yes",
"release:version": "lerna version --conventional-commits",
"test": "lerna run test --stream",
"test:ci": "lerna run test:ci --stream"
},
"devDependencies": {
"@types/jest": "^24.0.17",
"@types/koa": "^2.0.49",
"@types/koa-compose": "^3.2.4",
"@typescript-eslint/eslint-plugin": "^2.0.0",
"@typescript-eslint/parser": "^2.0.0",
"axios": "^0.19.0",
"codecov": "^3.5.0",
"debug": "^4.1.1",
"eslint-plugin-import": "^2.18.2",
"husky": "^3.0.9",
"ilp-packet": "^3.0.8",
"jest": "^24.9.0",
"koa": "^2.8.1",
"lerna": "^3.16.4",
"lint-staged": "^9.4.2",
"pino-debug": "^1.3.0",
"pino-pretty": "^3.2.1",
"prettier-eslint-cli": "^5.0.0",
"standardx": "^5.0.0",
"ts-jest": "^24.0.2",
"tslint": "^5.18.0",
"tslint-config-standard": "^8.0.1",
"typescript": "^3.5.3"
},
"husky": {
"hooks": {
"pre-commit": "yarn lint:staged",
"post-commit": "git update-index --again"
}
},
"lint-staged": {
"*.ts*": [
"yarn lint --fix",
"yarn format",
"git add"
]
},
"standardx": {
"ignore": [
"**/*.test.ts",
"packages/temp/*"
]
}
}