-
-
Notifications
You must be signed in to change notification settings - Fork 262
Expand file tree
/
Copy pathpackage.json
More file actions
107 lines (107 loc) · 3.08 KB
/
package.json
File metadata and controls
107 lines (107 loc) · 3.08 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "@thorsten/phpmyfaq",
"version": "4.2.0-alpha",
"description": "Open source FAQ web application for PHP 8.4+ with multi-database support, full-text search, user management, and a REST API",
"repository": "git://github.com/thorsten/phpMyFAQ.git",
"author": "Thorsten Rinne",
"license": "MPL-2.0",
"private": "true",
"readmeFilename": "README.md",
"bugs": {
"url": "https://github.com/thorsten/phpMyFAQ/issues"
},
"keywords": [
"phpMyFAQ",
"FAQ",
"Knowledge-Base",
"Helpdesk",
"Self-Service",
"Question-Answer",
"Content-Management",
"Full-Text-Search",
"Elasticsearch",
"Opensearch",
"Multi-Language",
"REST-API",
"PHP",
"MCP"
],
"homepage": "https://www.phpmyfaq.de/",
"engines": {
"node": ">=24.0.0"
},
"type": "module",
"scripts": {
"build": "vite build",
"build:watch": "vite build --watch",
"build:prod": "vite build",
"release:artifacts": "./scripts/prepare-release-artifacts.sh",
"release:sign": "./scripts/sign-release-artifacts.sh",
"sbom": "./scripts/generate-sbom.sh",
"eslint": "eslint .",
"lint": "prettier --check .",
"lint:fix": "prettier --write .",
"prepare": "husky",
"pretty-quick": "pretty-quick",
"tsc": "tsc --noEmit",
"test": "vitest --run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage"
},
"dependencies": {
"@popperjs/core": "2.11.8",
"autobind-decorator": "2.4.0",
"autocompleter": "9.3.2",
"bootstrap": "5.3.8",
"bootstrap-datepicker": "1.10.1",
"bootstrap-icons": "1.13.1",
"chart.js": "4.5.1",
"choices.js": "11.2.2",
"handlebars": "4.7.9",
"highlight.js": "11.11.1",
"jodit": "4.12.2",
"masonry-layout": "4.2.2",
"sortablejs": "1.15.7",
"vanilla-cookieconsent": "3.1.0"
},
"devDependencies": {
"@babel/core": "7.29.0",
"@babel/preset-env": "7.29.2",
"@commitlint/cli": "20.5.0",
"@commitlint/config-conventional": "20.5.0",
"@eslint/js": "9.39.4",
"@types/bootstrap": "5.2.10",
"@types/highlightjs": "9.12.6",
"@types/jsdom": "28.0.1",
"@types/masonry-layout": "4.2.8",
"@types/node": "25.6.0",
"@types/sortablejs": "1.15.9",
"@vitest/coverage-istanbul": "4.1.0",
"@vitest/coverage-v8": "4.1.0",
"autoprefixer": "10.5.0",
"eslint": "10.2.0",
"husky": "9.1.7",
"jsdom": "29.0.2",
"postcss": "8.5.10",
"prettier": "3.8.3",
"pretty-quick": "4.2.2",
"sass": "1.99.0",
"sigmund": "1.0.1",
"typescript": "6.0.3",
"typescript-eslint": "8.58.2",
"vite": "8.0.8",
"vite-plugin-compression": "0.5.1",
"vite-plugin-html": "3.2.2",
"vite-plugin-minify": "2.1.0",
"vite-plugin-static-copy": "4.0.1",
"vitest": "4.1.0",
"vitest-fetch-mock": "0.4.5"
},
"husky": {
"hooks": {
"pre-commit": "composer lint && composer validate && composer test && pnpm pretty-quick --staged && pnpm test",
"pre-push": "composer lint && composer validate && composer test && pnpm pretty-quick --staged && pnpm test"
}
},
"packageManager": "pnpm@8.15.5"
}