-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
108 lines (108 loc) · 2.97 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
100
101
102
103
104
105
106
107
108
{
"name": "joseffie-gulp-pack",
"description": "Starter template and gulp settings for web development",
"author": "Ivan Gavrilich (joseffie)",
"license": "GPL-3.0-only",
"version": "2.9.0",
"type": "module",
"main": "gulpfile.babel.js",
"repository": {
"type": "git",
"url": "https://github.com/joseffie/Gulp-Settings.git"
},
"scripts": {
"dev": "gulp",
"build": "gulp prod --production",
"build:pug": "gulp pug --production",
"build:scss": "gulp scss --production",
"build:js": "gulp js --production",
"build:images": "gulp images --production",
"build:fonts": "gulp createFonts && gulp fonts",
"build:gh-pages": "npm run build && gh-pages -d dist",
"gh-pages": "gh-pages -d dist",
"clean": "gulp reset",
"fonts": "gulp createFonts",
"sprite": "gulp makeSprites",
"zip": "gulp deployZIP --production",
"lint:scss": "npx stylelint \"src/**/*.scss\"",
"lint:scss --fix": "npx stylelint \"src/**/*.scss\" --fix",
"lint:js": "eslint --ext=mjs,js --debug src/**/*.js",
"lint:js --fix": "eslint --ext=mjs,js --debug src/**/*.js --fix",
"lint:pug": "pug-lint src/"
},
"browserslist": [
"> 1%",
"last 3 versions",
"ie 9-11"
],
"devDependencies": {
"@babel/core": "^7.18.6",
"@babel/eslint-parser": "^7.18.2",
"@babel/preset-env": "^7.18.6",
"@babel/register": "^7.18.6",
"babel-loader": "^8.2.5",
"bem-tools-core": "latest",
"browser-sync": "latest",
"del": "latest",
"emitty": "^1.4.0",
"eslint": "^8.17.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.0.0",
"gh-pages": "^4.0.0",
"gulp-autoprefixer": "latest",
"gulp-clean-css": "latest",
"gulp-data": "^1.3.1",
"gulp-fonter": "latest",
"gulp-group-css-media-queries": "latest",
"gulp-if": "latest",
"gulp-imagemin": "latest",
"gulp-newer": "latest",
"gulp-notify": "latest",
"gulp-plumber": "latest",
"gulp-pug": "latest",
"gulp-rename": "latest",
"gulp-replace": "latest",
"gulp-sass": "latest",
"gulp-svg-sprite": "latest",
"gulp-ttf2woff2": "latest",
"gulp-version-number": "latest",
"gulp-webp": "latest",
"gulp-webp-html-nosvg": "latest",
"gulp-webpcss": "^1.1.1",
"gulp-zip": "latest",
"prettier": "^2.7.1",
"pug-lint": "^2.6.0",
"sass": "latest",
"stylelint": "^14.9.1",
"stylelint-config-standard-scss": "^4.0.0",
"stylelint-order": "^5.0.0",
"stylelint-scss": "^4.2.0",
"webp-converter": "^2.2.3",
"webpcss": "^1.3.4"
},
"dependencies": {
"@bem/sdk.config": "^0.1.0",
"webpack-stream": "^7.0.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.pug": "pug-lint src/",
"linters": {
"*.scss": [
"npm run lint:styles --fix",
"git add"
],
"*.(js,jsx,mjs)": [
"npm run lint:js --fix",
"git add"
]
}
},
"resolutions": {
"gift": "^0.10.2"
}
}