-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
99 lines (99 loc) · 2.28 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "gulp-frontend-start-project",
"version": "1.0.0",
"description": "Gulp frontend start project",
"scripts": {
"dev": "gulp watch",
"build:dev": "gulp build",
"build:prod": "gulp build --prod",
"predeploy": "gulp build --prod",
"deploy": "gh-pages -d build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/USER/PROJECT.git"
},
"lint-staged": {
"*.js": "eslint",
"*.pug": "pug-lint",
"*.scss": "stylelint"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"keywords": [
"gulp",
"js",
"sass",
"pug",
"linters"
],
"browserslist": [
"> 0.1%",
"IE 11"
],
"author": "meme",
"license": "WTFPL",
"devDependencies": {
"@babel/core": "^7.17.5",
"@babel/eslint-parser": "^7.17.0",
"@babel/preset-env": "^7.16.11",
"@babel/register": "^7.17.0",
"@zoxon/emitty": "^1.4.2",
"babelify": "^10.0.0",
"browser-sync": "^2.27.7",
"browserify": "^17.0.0",
"del": "^6.0.0",
"eslint": "^8.11.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.25.4",
"focus-visible": "^5.2.0",
"gh-pages": "^4.0.0",
"gulp": "^4.0.2",
"gulp-autoprefixer": "^8.0.0",
"gulp-cache": "^1.1.3",
"gulp-changed": "^4.0.3",
"gulp-clean-css": "^4.3.0",
"gulp-group-css-media-queries": "^1.2.2",
"gulp-htmlmin": "^5.0.1",
"gulp-if": "^3.0.0",
"gulp-imagemin": "^7.1.0",
"gulp-plumber": "^1.2.1",
"gulp-pretty-html": "^2.0.10",
"gulp-pug": "^5.0.0",
"gulp-rename": "^2.0.0",
"gulp-sass": "^5.1.0",
"gulp-sass-glob": "^1.1.0",
"gulp-sourcemaps": "^3.0.0",
"gulp-squoosh": "0.9.0",
"gulp-svg-sprite": "^1.5.0",
"gulp-uglify": "^3.0.2",
"husky": "^7.0.4",
"imagemin-pngquant": "^9.0.2",
"imagemin-webp": "^7.0.0",
"lint-staged": "^12.3.5",
"pug-include-glob": "^0.4.3",
"pug-lint": "^2.6.0",
"sass": "^1.49.9",
"stylelint": "^14.5.3",
"stylelint-config-rational-order": "^0.1.2",
"stylelint-config-standard": "^25.0.0",
"stylelint-order": "^5.0.0",
"stylelint-scss": "^4.1.0",
"vinyl-buffer": "^1.0.1",
"vinyl-source-stream": "^2.0.0"
},
"dependencies": {
"gsap": "3.12.2",
"gulp-sharp-responsive": "0.4.1",
"imask": "7.1.3",
"jquery": "3.7.1",
"parsleyjs": "2.9.2",
"reset-css": "^5.0.1",
"sharp": "0.33.2",
"swiper": "9.4.1",
"vanilla-lazyload": "^17.6.1"
}
}