-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 2.51 KB
/
package.json
File metadata and controls
91 lines (91 loc) · 2.51 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
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
87
88
89
90
91
{
"name": "newsboxzero",
"version": "1.0.0",
"description": "A static webapp frontend for headless-rss",
"private": true,
"engines": {
"node": ">=20"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint",
"lint:fix": "eslint --fix",
"typecheck": "tsc --noEmit",
"format": "prettier --write .",
"format:check": "prettier --check .",
"test": "vitest run --passWithNoTests",
"test:watch": "vitest --passWithNoTests",
"test:coverage": "vitest run --coverage --passWithNoTests",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"prepare": "husky",
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"prettier --write"
],
"*.{json,md,yml,yaml}": [
"prettier --write"
],
"**/*.ts?(x)": [
"bash -c 'tsc --noEmit'"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/paulstaab/newsboxzero.git"
},
"keywords": [],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/paulstaab/newsboxzero/issues"
},
"homepage": "https://github.com/paulstaab/newsboxzero#readme",
"dependencies": {
"@fortawesome/free-solid-svg-icons": "7.1.0",
"@fortawesome/react-fontawesome": "^3.2.0",
"date-fns": "^4.1.0",
"next": "^16.1.6",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"swr": "^2.4.0"
},
"devDependencies": {
"@axe-core/playwright": "^4.11.1",
"@eslint/js": "^9.39.1",
"@openai/codex": "^0.104.0",
"@playwright/test": "^1.58.2",
"@tailwindcss/postcss": "^4.2.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/node": "^25.3.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@typescript-eslint/eslint-plugin": "^8.56.1",
"@typescript-eslint/parser": "^8.56.1",
"@vitest/coverage-v8": "^4.0.18",
"autoprefixer": "^10.4.24",
"eslint": "^9.39.1",
"eslint-config-next": "^16.1.6",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-unused-imports": "^4.4.1",
"globals": "^17.3.0",
"husky": "^9.1.7",
"jiti": "^2.6.1",
"jsdom": "^28.1.0",
"lint-staged": "^16.2.7",
"msw": "^2.12.10",
"postcss": "^8.5.6",
"prettier": "^3.8.1",
"tailwindcss": "^4.1.18",
"typescript": "^5.9.3",
"typescript-eslint": "^8.54.0",
"vitest": "^4.0.15"
}
}