-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathpackage.json
86 lines (86 loc) · 3.35 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "bootc",
"displayName": "Bootable Container",
"description": "Support for bootable OS containers (bootc) and generating disk images",
"version": "1.8.0-next",
"icon": "icon.png",
"publisher": "redhat",
"private": true,
"engines": {
"node": ">=22.0.0",
"npm": ">=10.2.3"
},
"scripts": {
"build": "concurrently \"cd packages/frontend && npm run build\" \"cd packages/backend && npm run build\"",
"watch": "concurrently \"cd packages/frontend && npm run watch\" \"cd packages/backend && npm run watch\"",
"format:check": "biome format && prettier --cache --check \"**/*.md\"",
"format:clean": "rimraf node_modules/.cache/prettier",
"format:fix": "biome format --write && prettier --cache --write \"**/*.md\"",
"lint:check": "eslint . --cache",
"lint:fix": "eslint . --cache --fix",
"svelte:check": "svelte-check",
"test:backend": "vitest run -r packages/backend --passWithNoTests --coverage",
"test:frontend": "vitest -c packages/frontend/vite.config.js run packages/frontend --passWithNoTests --coverage",
"test:shared": "vitest run -r packages/shared --passWithNoTests --coverage",
"test": "npm run test:backend && npm run test:shared && npm run test:frontend",
"test:e2e": "cd tests/playwright && npm run test:e2e",
"typecheck:shared": "tsc --noEmit --project packages/shared",
"typecheck:frontend": "tsc --noEmit --project packages/frontend",
"typecheck:backend": "tsc --noEmit --project packages/backend",
"typecheck": "npm run typecheck:shared && npm run typecheck:frontend && npm run typecheck:backend",
"prepare": "husky install"
},
"resolutions": {
"string-width": "^4.2.0",
"wrap-ansi": "^7.0.0"
},
"lint-staged": {
"*.{js,ts,tsx,svelte}": ["eslint --cache --fix", "biome format --write"],
"*.md": "prettier --cache --write",
"*.{css,json}": "biome format --write"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@commitlint/cli": "^19.8.0",
"@commitlint/config-conventional": "^19.8.0",
"@eslint/compat": "^1.2.7",
"@typescript-eslint/eslint-plugin": "^8.27.0",
"@typescript-eslint/parser": "^8.27.0",
"@vitest/coverage-v8": "^3.1.1",
"autoprefixer": "^10.4.21",
"commitlint": "^19.8.0",
"concurrently": "^9.1.2",
"eslint": "^9.22.0",
"eslint-import-resolver-custom-alias": "^1.3.2",
"eslint-import-resolver-typescript": "^4.3.1",
"eslint-plugin-etc": "^2.0.3",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-no-null": "^1.0.2",
"eslint-plugin-redundant-undefined": "^1.0.0",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-sonarjs": "^3.0.2",
"eslint-plugin-svelte": "^3.5.0",
"eslint-plugin-unicorn": "^58.0.0",
"husky": "^9.1.7",
"lint-staged": "^15.5.0",
"prettier": "^3.5.3",
"prettier-plugin-svelte": "^3.3.3",
"svelte-check": "^4.1.5",
"svelte-eslint-parser": "^1.1.1",
"typescript": "5.8.2",
"typescript-eslint": "^8.27.0",
"vite": "6.2.4",
"vitest": "^3.1.1",
"globals": "^16.0.0"
},
"dependencies": {
"@xterm/addon-attach": "^0.11.0",
"js-yaml": "^4.1.0"
},
"pnpm": {
"overrides": {
"vite>esbuild": "^0.25.0"
}
},
"packageManager": "[email protected]+sha512.73a29afa36a0d092ece5271de5177ecbf8318d454ecd701343131b8ebc0c1a91c487da46ab77c8e596d6acf1461e3594ced4becedf8921b074fbd8653ed7051c"
}