-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 858 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 858 Bytes
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
{
"name": "root",
"private": true,
"workspaces": [
"packages/abstractions",
"packages/node",
"packages/simple",
"packages/web"
],
"scripts": {
"build": "npm run build --workspaces",
"lint": "npm run lint:prettier && npm run lint:eslint && npm run lint:tsc",
"lint:eslint": "eslint",
"lint:prettier": "prettier --check .",
"lint:tsc": "npm run build --workspaces",
"test": "npm run test --workspaces --if-present"
},
"devDependencies": {
"@js-soft/eslint-config-ts": "2.0.4",
"@js-soft/license-check": "1.0.10",
"@types/jest": "^30.0.0",
"@types/node": "^24.7.2",
"eslint": "^9.37.0",
"jest": "^30.2.0",
"prettier": "^3.6.2",
"ts-jest": "^29.4.5",
"typescript": "^5.9.3"
}
}