-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.4 KB
/
Copy pathpackage.json
File metadata and controls
47 lines (47 loc) · 1.4 KB
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
45
46
47
{
"name": "itwillsync-root",
"private": true,
"type": "module",
"scripts": {
"build": "pnpm --filter @itwillsync/web-client build && pnpm --filter @itwillsync/hub build && pnpm --filter itwillsync build",
"test": "pnpm -r test",
"test:coverage": "pnpm --filter itwillsync --filter @itwillsync/hub --filter @itwillsync/web-client exec vitest run --coverage",
"dev": "pnpm -r --parallel dev",
"clean": "pnpm -r clean",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"typecheck": "pnpm -r --if-present typecheck",
"prepare": "husky",
"docs:dev": "pnpm --filter @itwillsync/docs dev",
"docs:build": "pnpm --filter @itwillsync/docs build"
},
"lint-staged": {
"*.ts": "eslint --no-warn-ignored"
},
"pnpm": {
"overrides": {
"handlebars": ">=4.7.9",
"js-yaml": ">=4.2.0",
"gray-matter>js-yaml": "^3.13.1",
"undici": ">=7.28.0 <8.0.0",
"linkify-it": ">=5.0.1"
}
},
"packageManager": "pnpm@10.30.3",
"engines": {
"node": ">=20.0.0"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/exec": "^7.1.0",
"@semantic-release/git": "^10.0.1",
"@vitest/coverage-v8": "^4.1.10",
"eslint": "^10.6.0",
"globals": "^17.7.0",
"husky": "^9.1.7",
"lint-staged": "^17.0.8",
"semantic-release": "^25.0.5",
"typescript-eslint": "^8.63.0"
}
}