-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
71 lines (71 loc) · 1.71 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
{
"name": "Boilerplate",
"description": "Website for Boilerplate",
"version": "0.0.1",
"license": "UNLICENSED",
"private": true,
"main": "assets/gulp.js",
"author": "Miranj",
"scripts": {
"dev": "cd assets && gulp",
"build": "cd assets && gulp build",
"prepare": "husky install"
},
"prettier": {
"plugins": [
"@prettier/plugin-php"
],
"overrides": [
{
"files": "*.md.default",
"options": {
"parser": "markdown"
}
},
{
"files": "*.json.default",
"options": {
"parser": "json"
}
}
],
"phpVersion": "8.2",
"singleQuote": true
},
"lint-staged": {
"*.{js,css,md,php,json,default}": "prettier --write --cache --no-error-on-unmatched-pattern"
},
"dependencies": {
"@alpinejs/collapse": "^3.14.1",
"alpinejs": "^3.14.1",
"instant.page": "^5.1.1",
"lazysizes": "^5.2.2",
"photoswipe": "^5.2.7"
},
"devDependencies": {
"@fullhuman/postcss-purgecss": "^7.0.2",
"@prettier/plugin-php": "^0.22.2",
"autoprefixer": "^10.4.4",
"cssnano": "^5.1.11",
"gulp": "^5.0.0",
"gulp-concat": "^2.6.1",
"gulp-hashsum": "^1.2.0",
"gulp-json-format": "^2.0.0",
"gulp-postcss": "^9.0.0",
"gulp-rename": "^2.0.0",
"gulp-sizereport": "^1.2.1",
"gulp-sri": "^0.3.1",
"gulp-terser-js": "^5.2.2",
"gulp-uglify": "^3.0.1",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"postcss": "^8.4.31",
"postcss-calc": "^7.0.1",
"postcss-custom-properties": "^9.1.1",
"postcss-import": "^14.0.2",
"postcss-inline-svg": "^4.1.0",
"postcss-nested": "^4.2.3",
"prettier": "^3.3.2",
"tailwindcss": "^3.4.4"
}
}