-
-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.76 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.76 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
48
49
50
51
52
{
"name": "html2rss-frontend",
"type": "module",
"packageManager": "pnpm@10.33.0",
"engines": {
"node": ">=22.0.0"
},
"scripts": {
"dev": "vite --port 4001 --host",
"build": "vite build",
"preview": "vite preview --port 4001 --host",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"typecheck": "tsc -p tsconfig.typecheck.json --noEmit",
"openapi:generate": "openapi-ts -i ../public/openapi.yaml -o src/api/generated -c @hey-api/client-fetch",
"openapi:verify": "openapi-ts -i ../public/openapi.yaml -o src/api/generated -c @hey-api/client-fetch && git diff --exit-code -- src/api/generated",
"test": "vitest",
"test:run": "vitest run",
"test:unit": "vitest run --reporter=verbose --config vitest.unit.config.ts",
"test:contract": "vitest run --reporter=verbose --config vitest.contract.config.ts",
"test:ci": "pnpm run test:unit && pnpm run test:contract",
"test:e2e": "playwright test"
},
"dependencies": {
"preact": "^10.29.1",
"tslib": "^2.8.1"
},
"devDependencies": {
"@eslint/js": "^9.39.4",
"@hey-api/openapi-ts": "^0.93.1",
"@playwright/test": "^1.59.1",
"@preact/preset-vite": "^2.10.5",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/preact": "^3.2.4",
"baseline-browser-mapping": "^2.10.13",
"eslint": "^9.39.4",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-unicorn": "^57.0.0",
"globals": "^16.5.0",
"jsdom": "^27.4.0",
"msw": "^2.12.14",
"prettier": "^3.8.1",
"stylelint": "^17.6.0",
"stylelint-config-standard": "^40.0.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.58.0",
"vite": "^6.4.2",
"vitest": "^3.2.4"
}
}