-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
31 lines (31 loc) · 1006 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
29
30
31
{
"name": "root",
"private": true,
"workspaces": [
"packages/abstractions",
"packages/loki",
"packages/mongo",
"packages/querytranslator"
],
"scripts": {
"build": "npm run build --workspaces",
"build:watch": "tsc -b -w packages/*",
"lint": "npm run lint:prettier && npm run lint:eslint && npm run lint:tsc",
"lint:eslint": "eslint --ext .ts ./packages/*/src ./packages/*/test",
"lint:prettier": "prettier --check .",
"lint:tsc": "npm run build --workspaces",
"test:local": "npm run test:local --workspaces --if-present"
},
"devDependencies": {
"@js-soft/eslint-config-ts": "1.6.13",
"@js-soft/license-check": "1.0.9",
"@types/jest": "^29.5.14",
"@types/node": "^22.10.10",
"eslint": "^8.57.0",
"jest": "^29.7.0",
"prettier": "^3.4.2",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.7.3"
}
}