-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
40 lines (40 loc) · 1.11 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
{
"name": "wp-theme-prototype",
"version": "2.0.0",
"description": "WordPress theme prototype with Gulp asset pipeline includes SASS, Uglify, Imagemin and more",
"main": "index.php",
"scripts": {
"dev": "gulp",
"vendor": "gulp vendor"
},
"engines": {
"node": ">= 16.0.0"
},
"repository": "https://github.com/jir4yu/wp-theme-prototype.git",
"author": "Jirayu Limjinda <jir4yu.l@gmail.com>",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.14.2",
"@babel/preset-env": "^7.14.2",
"eslint": "^5.6.1",
"gulp": "^4.0.2",
"gulp-autoprefixer": "^7.0.1",
"gulp-babel": "^8.0.0",
"gulp-clean-css": "^4.3.0",
"gulp-concat": "^2.6.1",
"gulp-header": "^2.0.9",
"gulp-imagemin": "^7.1.0",
"gulp-livereload": "^4.0.2",
"gulp-rename": "^2.0.0",
"gulp-sass": "^5.1.0",
"gulp-shell": "^0.8.0",
"gulp-sourcemaps": "^3.0.0",
"gulp-terser": "^2.0.1",
"gulp-watch": "^5.0.1",
"imagemin-giflossy": "^5.1.10",
"imagemin-mozjpeg": "^8.0.0",
"imagemin-pngquant": "^8.0.0",
"imagemin-zopfli": "^6.0.0",
"sass": "^1.64.1"
}
}