forked from thorsten/phpMyFAQ
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.71 KB
/
Copy pathpackage.json
File metadata and controls
62 lines (62 loc) · 1.71 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
{
"name": "@thorsten/phpmyfaq",
"version": "3.1.0-dev",
"description": "phpMyFAQ",
"repository": "git://github.com/thorsten/phpMyFAQ.git",
"author": "Thorsten Rinne",
"license": "MPL-2.0",
"readmeFilename": "README.md",
"bugs": {
"url": "https://github.com/thorsten/phpMyFAQ/issues"
},
"keywords": [
"phpMyFAQ"
],
"homepage": "https://www.phpmyfaq.de/",
"scripts": {
"build": "webpack",
"build:watch": "webpack --watch"
},
"dependencies": {
"bootstrap": "^4.2.1",
"bootstrap-3-typeahead": "^4.0.2",
"bootstrap-datepicker": "^1.8.0",
"bs-custom-file-input": "^1.3.1",
"cookieconsent": "^3.1.0",
"fork-awesome": "^1.1.7",
"handlebars": "^4.0.12",
"highlightjs": "^9.12.0",
"jquery": "^3.5.0",
"jquery-sparkline": "^2.4.0",
"popper.js": "^1.14.6",
"tinymce": "^4.9.10"
},
"devDependencies": {
"@babel/core": "^7.7.7",
"autoprefixer": "^9.7.3",
"babel-loader": "^8.0.6",
"babel-preset-env": "^1.7.0",
"babel-preset-es2015": "^6.24.1",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^5.1.1",
"css-loader": "^3.4.0",
"file-loader": "^6.0.0",
"husky": "^4.0.2",
"mini-css-extract-plugin": "^0.9.0",
"node-sass": "^4.13.0",
"prettier": "2.0.2",
"pretty-quick": "^2.0.1",
"sass-loader": "^8.0.0",
"sigmund": "^1.0.1",
"style-loader": "^1.1.1",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.10",
"webpack-concat-plugin": "3.0.0"
},
"husky": {
"hooks": {
"pre-commit": "composer lint && composer validate && composer test && pretty-quick --staged",
"pre-push": "composer lint && composer validate && composer test && pretty-quick --staged"
}
}
}