-
-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.4 KB
/
package.json
File metadata and controls
41 lines (41 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
{
"name": "html2rss-frontend",
"type": "module",
"engines": {
"node": ">=22.0.0"
},
"scripts": {
"dev": "vite --port 4001 --host",
"build": "vite build",
"preview": "vite preview --port 4001 --host",
"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": "npm run test:unit && npm run test:contract",
"test:e2e": "playwright test"
},
"dependencies": {
"preact": "^10.27.2",
"tslib": "^2.8.1"
},
"devDependencies": {
"@hey-api/openapi-ts": "^0.93.1",
"@playwright/test": "^1.58.2",
"@preact/preset-vite": "^2.10.2",
"@testing-library/jest-dom": "^6.8.0",
"@testing-library/preact": "^3.2.4",
"baseline-browser-mapping": "^2.10.9",
"jsdom": "^27.0.0",
"msw": "^2.11.3",
"prettier": "^3.x.x",
"typescript": "^5.9.3",
"vite": "^6.3.6",
"vitest": "^3.2.4"
}
}