-
-
Notifications
You must be signed in to change notification settings - Fork 256
/
package.json
78 lines (78 loc) · 2.19 KB
/
package.json
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
{
"name": "@thorsten/phpmyfaq",
"version": "4.1.0-dev",
"description": "phpMyFAQ",
"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"
],
"homepage": "https://www.phpmyfaq.de/",
"engines": {
"node": ">=22.0.0"
},
"type": "module",
"scripts": {
"build": "vite build",
"build:watch": "vite build --watch",
"build:prod": "vite build",
"lint": "prettier --check .",
"lint:fix": "prettier --write .",
"prepare": "husky",
"pretty-quick": "pretty-quick",
"test": "vitest --run",
"test:watch": "vitest",
"coverage": "vitest run --coverage"
},
"dependencies": {
"@popperjs/core": "^2.11.8",
"autocompleter": "^9.3.2",
"bootstrap": "^5.3.3",
"bootstrap-datepicker": "^1.10.0",
"bootstrap-icons": "^1.11.3",
"chart.js": "^4.4.6",
"handlebars": "4.7.8",
"highlight.js": "^11.10.0",
"masonry-layout": "^4.2.2",
"sortablejs": "^1.15.3",
"tinymce": "^6.8.4",
"vanilla-cookieconsent": "^3.0.1"
},
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/preset-env": "^7.26.0",
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@types/node": "^20.16.5",
"@vitest/coverage-v8": "2.1.5",
"autoprefixer": "^10.4.20",
"babel-preset-env": "^1.7.0",
"husky": "^9.1.6",
"jsdom": "^25.0.1",
"postcss": "^8.4.47",
"prettier": "^3.3.3",
"pretty-quick": "^4.0.0",
"sass": "^1.80.6",
"sigmund": "^1.0.1",
"vite": "^6",
"vite-plugin-compression": "^0.5.1",
"vite-plugin-html": "^3.2.2",
"vite-plugin-minify": "^2.0.1",
"vite-plugin-static-copy": "^2.1.0",
"vitest": "^2.1.5",
"vitest-fetch-mock": "^0.4.2"
},
"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": "[email protected]"
}