-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.08 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
{
"name": "@systemd/root",
"version": "1.0.0",
"engines": {
"node": "^20.0.0"
},
"type": "module",
"workspaces": [
"packages/*"
],
"private": true,
"license": "Apache-2.0",
"scripts": {
"lint": "eslint . --cache",
"lint:fix": "eslint . --fix --cache",
"build": "tsc --build",
"build:watch": "tsc --build --watch",
"lerna": "lerna",
"test": "vitest --run",
"test:coverage": "vitest --coverage",
"test:watch": "vitest",
"prepare": "husky"
},
"devDependencies": {
"@chyzwar/eslint-config": "^0.2.29",
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@lerna-lite/cli": "^3.9.1",
"@lerna-lite/publish": "^3.9.1",
"@lerna-lite/version": "^3.9.1",
"@types/node": "^22.5.5",
"conventional-changelog-conventionalcommits": "^7.0.2",
"eslint": "^9.11.0",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"ts-node": "^10.9.2",
"typescript": "^5.6.2",
"vitest": "^2.1.1"
},
"lint-staged": {
"*.{js,ts,tsx}": "yarn lint:fix"
},
"packageManager": "[email protected]"
}