-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
28 lines (28 loc) · 951 Bytes
/
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
{
"private": true,
"scripts": {
"build": "yarn workspaces foreach --no-private --all --topological-dev --verbose --parallel run build",
"ci": "yarn workspaces foreach --no-private --all --topological-dev --verbose --parallel run ci",
"publish": "yarn workspaces foreach --no-private --all --topological-dev --verbose --parallel publish --no-git-tag-version --non-interactive",
"test": "yarn workspaces foreach --all --verbose --parallel run test"
},
"workspaces": [
"packages/*",
"examples/*"
],
"devDependencies": {
"@tsconfig/node18": "^18.2.0",
"@types/pg": "^8.10.2",
"@typescript-eslint/eslint-plugin": "^5.61.0",
"@typescript-eslint/parser": "^5.61.0",
"eslint": "^8.44.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.27.5",
"typedoc": "^0.24.8",
"typescript": "^5.1.6"
},
"engines": {
"node": ">=18"
},
"packageManager": "[email protected]"
}