forked from thorsten/phpMyFAQ
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
87 lines (87 loc) · 2.52 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
79
80
81
82
83
84
85
86
87
{
"name": "@thorsten/phpmyfaq",
"version": "4.0.0-alpha.4",
"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": ">=20.0.0"
},
"scripts": {
"build": "webpack --config webpack.dev.js",
"build:prod": "webpack --config webpack.prod.js",
"build:watch": "webpack --watch --progress --config webpack.dev.js",
"lint": "prettier --check .",
"lint:fix": "prettier --write .",
"prepare": "husky install",
"pretty-quick": "pretty-quick",
"test": "jest"
},
"dependencies": {
"@popperjs/core": "^2.11.8",
"autocompleter": "^8.0.4",
"bootstrap": "^5.3.3",
"bootstrap-datepicker": "^1.10.0",
"bootstrap-icons": "^1.11.3",
"chart.js": "^4.4.3",
"handlebars": "4.7.8",
"highlight.js": "^11.10.0",
"masonry-layout": "^4.2.2",
"sortablejs": "^1.15.2",
"tinymce": "^6.8.4",
"vanilla-cookieconsent": "^3.0.1"
},
"devDependencies": {
"@babel/core": "^7.24.9",
"@babel/preset-env": "^7.24.8",
"@commitlint/cli": "^17.8.1",
"@commitlint/config-conventional": "^17.8.1",
"@mcler/webpack-concat-plugin": "^4.1.6",
"@playwright/test": "^1.45.2",
"@testing-library/jest-dom": "^5.17.0",
"@types/node": "^20.14.11",
"autoprefixer": "^10.4.19",
"babel-jest": "^29.7.0",
"babel-loader": "^9.1.3",
"babel-preset-env": "^1.7.0",
"clean-webpack-plugin": "^4.0.0",
"css-loader": "^6.11.0",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.6.0",
"husky": "^8.0.3",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"mini-css-extract-plugin": "^2.9.0",
"node-sass": "^8.0.0",
"postcss": "^8.4.39",
"prettier": "^2.8.8",
"pretty-quick": "^3.3.1",
"raw-loader": "^4.0.2",
"sass-loader": "^13.3.3",
"sigmund": "^1.0.1",
"style-loader": "^3.3.4",
"webpack": "^5.93.0",
"webpack-cli": "^5.1.4",
"webpack-merge": "^5.10.0",
"webpack-sources": "^3.2.3"
},
"browserslist": [
"defaults"
],
"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"
}
}
}