-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
34 lines (34 loc) · 1.04 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
{
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"build": "yarn workspace @philter/common build && yarn workspace @philter/cli build && yarn workspace @philter/e2e-tests build && yarn workspace @philter/api build && yarn workspace @philter/manager build",
"build:cli": "yarn workspace @philter/common build && yarn workspace @philter/cli build",
"build:e2e": "yarn workspace @philter/common build && yarn workspace @philter/e2e-tests build",
"build:manager": "yarn workspace @philter/common build && yarn workspace @philter/api build && yarn workspace @philter/manager build",
"lint": "eslint .",
"postinstall": "patch-package"
},
"eslintConfig": {
"extends": "./node_modules/gts/",
"rules": {
"node/no-unpublished-import": [
"error",
{
"allowModules": [
"kolmafia"
]
}
]
},
"ignorePatterns": [
"/packages/*/build/",
"/release/"
]
},
"devDependencies": {
"postinstall-postinstall": "^2.1.0"
}
}