-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.54 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 2.54 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
{
"name": "phpmyfaq-website",
"version": "4.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"prebuild": "npm run generate:news-api",
"build": "next build",
"postbuild": "cp -f static/.htaccess out/.htaccess || true",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"lint-staged": "lint-staged",
"test": "vitest",
"test:ui": "vitest --ui",
"test:ci": "vitest --run",
"test:coverage": "vitest --coverage",
"test:e2e": "PLAYWRIGHT_TEST=1 playwright test",
"test:e2e:ui": "PLAYWRIGHT_TEST=1 playwright test --ui",
"test:e2e:headed": "PLAYWRIGHT_TEST=1 playwright test --headed",
"fetch:versions": "npx tsx scripts/fetch-versions.ts",
"fetch:downloads": "npx tsx scripts/fetch-downloads.ts",
"generate:news-api": "npx tsx scripts/generate-news-api.ts",
"update:data": "npm run fetch:versions && npm run fetch:downloads",
"prepare": "husky",
"format": "prettier --write .",
"format:check": "prettier --check ."
},
"dependencies": {
"@fortawesome/fontawesome-free": "^7.2.0",
"@types/bootstrap": "^5.2.10",
"@types/marked": "^5.0.2",
"bootstrap": "^5.3.8",
"gray-matter": "^4.0.3",
"marked": "^16.4.2",
"next": "16.1.1",
"react": "19.2.3",
"react-dom": "19.2.3",
"sass": "^1.97.3"
},
"devDependencies": {
"@commitlint/cli": "^20.4.2",
"@commitlint/config-conventional": "^20.4.2",
"@commitlint/types": "^20.4.0",
"@eslint/js": "^9.39.3",
"@next/eslint-plugin-next": "16.1.1",
"@playwright/test": "^1.58.2",
"@tailwindcss/postcss": "^4.2.0",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/node": "^20.19.33",
"@types/react": "19.2.7",
"@types/react-dom": "19.2.3",
"@typescript-eslint/eslint-plugin": "^8.56.0",
"@typescript-eslint/parser": "^8.56.0",
"@vitejs/plugin-react": "^5.1.4",
"@vitest/coverage-v8": "^4.0.18",
"conventional-changelog-atom": "^5.0.0",
"eslint": "^9.39.3",
"eslint-config-next": "16.1.1",
"eslint-config-prettier": "^9.1.2",
"globals": "^15.15.0",
"husky": "^9.1.7",
"jsdom": "^27.4.0",
"lint-staged": "^16.2.7",
"postcss": "^8.5.6",
"prettier": "^3.8.1",
"tailwindcss": "^3.4.19",
"typescript": "^5.9.3",
"vitest": "^4.0.18"
},
"pnpm": {
"overrides": {
"@types/react": "19.2.7",
"@types/react-dom": "19.2.3"
},
"ignoredBuiltDependencies": [
"@parcel/watcher",
"esbuild",
"sharp"
]
}
}