-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
72 lines (72 loc) · 2.83 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
{
"name": "bootc",
"displayName": "Bootable Container",
"description": "Support for bootable OS containers (bootc) and generating disk images",
"version": "1.6.0-next",
"icon": "icon.png",
"publisher": "redhat",
"private": true,
"engines": {
"node": ">=20.9.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": "prettier --check \"**/src/**/*.{ts,svelte}\"",
"format:fix": "prettier --write \"**/src/**/*.{ts,svelte}\"",
"lint:check": "eslint . --ext js,ts,tsx",
"lint:fix": "eslint . --fix --ext js,ts,tsx",
"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,svelte}": [
"eslint --fix",
"prettier --write"
],
"*.{md,css,json}": "prettier --write"
},
"devDependencies": {
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@typescript-eslint/eslint-plugin": "^8.14.0",
"@typescript-eslint/parser": "^8.0.1",
"@vitest/coverage-v8": "^2.0.2",
"autoprefixer": "^10.4.20",
"concurrently": "^9.1.0",
"eslint": "^8.57.1",
"eslint-import-resolver-custom-alias": "^1.3.2",
"eslint-import-resolver-typescript": "^3.6.3",
"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-sonarjs": "^2.0.4",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"prettier-plugin-svelte": "^3.2.8",
"typescript": "5.6.3",
"vite": "^5.4.11",
"vitest": "^2.0.2"
},
"dependencies": {
"@xterm/addon-attach": "^0.11.0",
"js-yaml": "^4.1.0"
},
"packageManager": "pnpm@9.10.0+sha512.73a29afa36a0d092ece5271de5177ecbf8318d454ecd701343131b8ebc0c1a91c487da46ab77c8e596d6acf1461e3594ced4becedf8921b074fbd8653ed7051c"
}