-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
56 lines (56 loc) · 1.26 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
{
"workspaces": [
"packages/*"
],
"scripts": {
"build": "wireit",
"test": "wireit",
"format": "prettier \"./packages/*/src/**/*.ts\" --write",
"check": "wireit"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.59.1",
"@typescript-eslint/parser": "^5.59.1",
"eslint": "^8.39.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-no-only-tests": "^3.1.0",
"prettier": "^2.8.8",
"typescript": "^5.0.4",
"wireit": "^0.9.5"
},
"wireit": {
"build": {
"dependencies": [
"./packages/tools:build",
"./packages/validator:build"
]
},
"test": {
"dependencies": [
"./packages/tools:test"
]
},
"check": {
"dependencies": [
"check:lint",
"check:format"
]
},
"check:lint": {
"command": "eslint --color --cache --cache-location .eslintcache \"packages/*/src/**/*.ts\"",
"files": [
".eslintrc.json",
"packages/*/src/**/*.ts"
],
"output": []
},
"check:format": {
"command": "prettier \"./packages/*/src/**/*.ts\" --check --cache --cache-strategy=metadata",
"files": [
".prettierrc.json",
"packages/*/src/**/*.ts"
],
"output": []
}
}
}