-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1.01 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
{
"version": "1.0.0",
"name": "gulp-compiler",
"description": "Tutorial made with the task runner Gulp to build HTML, CSS, JS, ICONS and IMAGES files.",
"author": "beatrizsmerino@gmail.com",
"license": "ISC",
"main": "index.js",
"scripts": {
"install:clean": "rm -rf node_modules package-lock.json",
"preinstall": "npm run install:clean && npm install --ignore-scripts && npx npm-force-resolutions"
},
"devDependencies": {
"@babel/core": "^7.25.8",
"@babel/preset-env": "^7.25.8",
"babel-core": "^6.26.3",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.7.0",
"browser-sync": "^3.0.3",
"gulp": "^4.0.2",
"gulp-autoprefixer": "^8.0.0",
"gulp-babel": "^8.0.0",
"gulp-clean-css": "^4.3.0",
"gulp-concat": "^2.6.1",
"gulp-htmlmin": "^5.0.1",
"gulp-line-ending-corrector": "^1.0.3",
"gulp-rename": "^2.0.0",
"gulp-sass": "^5.1.0",
"gulp-sourcemaps": "^3.0.0",
"gulp-uglify": "^3.0.2",
"sass": "^1.80.3"
},
"resolutions": {},
"engines": {
"node": "20.10.0",
"npm": "10.2.3"
}
}