-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
127 lines (127 loc) · 4.05 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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
{
"name": "gulp-joseffie-tailwind-pack",
"description": "Front-end boilerplate and framework based on Gulp, Pug, SCSS, Tailwind and Babel",
"author": "Ivan Gavrilich (joseffie)",
"license": "MIT",
"version": "1.0.0",
"scripts": {
"dev": "gulp",
"build": "gulp build --production",
"zip": "gulp zip --production",
"build:pug": "gulp pug --production",
"build:styles": "gulp styles --production",
"build:js": "gulp js --production",
"build:images": "gulp images --production",
"build:fonts": "gulp fonts",
"build:sprites": "gulp sprites",
"deploy": "npm run build && gh-pages -d dist",
"publish": "gh-pages -d dist",
"lint:pug": "pug-lint src/",
"lint:styles": "npx stylelint \"src/**/*.scss\"",
"lint:styles --fix": "npx stylelint \"src/**/*.scss\"",
"lint:scripts": "npx eslint --ext .js,.cjs,.mjs --debug src/**/*.js",
"lint:scripts --fix": "npx eslint --ext .js,.cjs,.mjs src/**/*.js --fix"
},
"main": "gulpfile.babel.js",
"type": "module",
"dependencies": {
"lodash": "^4.17.21",
"tailwindcss": "^3.1.8"
},
"devDependencies": {
"@babel/core": "^7.18.10",
"@babel/eslint-parser": "^7.18.9",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-decorators": "^7.18.10",
"@babel/plugin-proposal-export-default-from": "^7.18.10",
"@babel/plugin-proposal-function-sent": "^7.18.6",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/preset-env": "^7.18.10",
"@babel/register": "^7.18.9",
"@prettier/plugin-pug": "^2.2.0",
"autoprefixer": "^10.4.8",
"babel-loader": "^8.2.5",
"babel-plugin-transform-imports": "^2.0.0",
"bem-tools-core": "^0.0.3",
"bem-tools-create": "^2.3.0",
"browser-sync": "^2.27.10",
"case-sensitive-paths-webpack-plugin": "^2.4.0",
"chalk": "^5.0.1",
"circular-dependency-plugin": "^5.2.2",
"css-mqpacker": "^7.0.0",
"cssnano": "^5.1.13",
"del": "^7.0.0",
"duplicate-package-checker-webpack-plugin": "^3.0.0",
"emitty": "^1.4.0",
"eslint": "^8.22.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-unicorn": "^43.0.2",
"gh-pages": "^4.0.0",
"gulp": "^4.0.2",
"gulp-data": "^1.3.1",
"gulp-fonter": "^0.3.0",
"gulp-if": "^3.0.0",
"gulp-imagemin": "^8.0.0",
"gulp-newer": "^1.4.0",
"gulp-notify": "^4.0.0",
"gulp-plumber": "^1.2.1",
"gulp-postcss": "^9.0.1",
"gulp-posthtml": "^3.0.5",
"gulp-pug": "^5.0.0",
"gulp-replace": "^1.1.3",
"gulp-sass": "^5.1.0",
"gulp-svg-sprite": "^1.5.0",
"gulp-ttf2woff2": "^4.0.1",
"gulp-version-number": "^0.2.4",
"gulp-webp": "^4.0.1",
"gulp-webp-html-nosvg": "^1.1.1",
"gulp-webpcss": "^1.1.1",
"gulp-zip": "^5.1.0",
"gulplog": "^2.0.0",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"postcss": "^8.4.16",
"postcss-flexbugs-fixes": "^5.0.2",
"postcss-preset-env": "^7.8.0",
"postcss-reporter": "^7.0.5",
"posthtml-attrs-sorter": "^1.1.0",
"prettier": "^2.7.1",
"pug-lint": "^2.6.0",
"sass": "^1.54.5",
"sort-css-media-queries": "^2.0.4",
"stylelint": "^14.11.0",
"stylelint-config-standard-scss": "^5.0.0",
"stylelint-order": "^5.0.0",
"stylelint-scss": "^4.3.0",
"tailwindcss-hyphens": "^0.1.0",
"tailwindcss-text-fill": "^0.2.0",
"terser-webpack-plugin": "^5.3.5",
"webp-converter": "2.2.3",
"webpack": "^5.74.0",
"webpack-stream": "^7.0.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.pug": [
"yarn prettier --write **/*.pug --config .prettierrc.json",
"yarn pug-lint src/",
"git add"
],
"*.scss": [
"yarn prettier --write **/*.scss --config .prettierrc.json",
"yarn stylelint \"src/**/*.scss\" --fix",
"git add"
],
"*.{js,cjs}": [
"yarn prettier --write **/*.{js,cjs} --config .prettierrc.json",
"yarn eslint --ext .js,.cjs,.mjs src/**/*.js --fix",
"git add"
]
}
}