-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.45 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
{
"name": "gulp-handlebars-starter",
"version": "1.0.0",
"description": "A simple setup using Gulp and Handlebars (with layout support) to compile HTML, copy assets, and run a live server.",
"type": "module",
"scripts": {
"start": "node --no-deprecation ./node_modules/gulp/bin/gulp.js",
"build": "node --no-deprecation ./node_modules/gulp/bin/gulp.js build",
"clean": "node --no-deprecation ./node_modules/gulp/bin/gulp.js clean"
},
"author": "Oğuz 'Aesisify' Gergin",
"license": "CC0",
"devDependencies": {
"autoprefixer": "^10.4.20",
"browser-sync": "^3.0.3",
"cssnano": "^7.0.6",
"del": "^8.0.0",
"glob": "^11.0.0",
"gulp": "^5.0.0",
"gulp-cached": "^1.1.1",
"gulp-changed": "^4.0.3",
"gulp-data": "^1.3.1",
"gulp-filter": "^9.0.1",
"gulp-hb": "^8.0.0",
"gulp-htmlmin": "^5.0.1",
"gulp-imagemin": "^9.1.0",
"gulp-plumber": "^1.2.1",
"gulp-postcss": "^10.0.0",
"gulp-prettier": "^6.0.0",
"gulp-remember": "^1.0.1",
"gulp-rename": "^2.0.0",
"gulp-sass": "^6.0.0",
"gulp-sourcemaps": "^3.0.0",
"gulp-terser": "^2.1.0",
"handlebars-layouts": "^3.1.4",
"imagemin-gifsicle": "^7.0.0",
"imagemin-mozjpeg": "^10.0.0",
"imagemin-optipng": "^8.0.0",
"imagemin-svgo": "^11.0.1",
"sass": "^1.83.1",
"vinyl-fs": "^4.0.0"
},
"browserslist": [
">0.2%",
"not dead",
"not op_mini all"
],
"engines": {
"node": ">=18.0.0"
}
}