-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
124 lines (124 loc) · 3.37 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
{
"name": "gulp-starter-pack",
"version": "2.4.2",
"description": "",
"license": "ISC",
"author": "Sergey Khmelevskoy <sergey@khmelevskoy.co>",
"main": "index.js",
"engines": {
"node": ">=12.0.0"
},
"browserslist": [
"last 5 versions"
],
"scripts": {
"start": "gulp",
"build": "gulp build --production",
"lint:js": "node_modules/.bin/eslint . --fix",
"surge": "surge --project ./dist --domain khmelevskoy.surge.sh",
"deploy": "gulp build --production && surge --project ./dist --domain khmelevskoy.surge.sh"
},
"lint-staged": {
"src/**/*.{js,jsx}": [
"node_modules/.bin/eslint . --fix"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"dependencies": {
"air-datepicker": "^2.2.3",
"aos": "^2.3.4",
"autofill-event": "^0.0.1",
"barba.js": "^1.0.0",
"choices.js": "^9.0.1",
"clipboard": "^2.0.6",
"gsap": "^3.6.0",
"jquery": "^3.5.1",
"jquery-lazy": "^1.7.11",
"jquery-mask-plugin": "^1.14.16",
"jquery-selectric": "^0.2.0",
"jquery-validation": "^1.19.3",
"lodash": "^4.17.20",
"magnific-popup": "^1.1.0",
"micromodal": "^0.4.6",
"object-fit-images": "^3.2.4",
"photoswipe": "^4.1.3",
"picturefill": "^3.0.3",
"scroll-lock": "^2.1.4",
"scrollmonitor": "^1.2.4",
"sharer.js": "^0.4.1",
"surge": "^0.21.7",
"svg4everybody": "^2.1.9",
"swiper": "^6.5.1",
"viewport-units-buggyfill": "^0.6.2"
},
"devDependencies": {
"@babel/cli": "^7.12.10",
"@babel/core": "^7.12.10",
"@babel/preset-env": "^7.12.11",
"@babel/register": "^7.12.10",
"ansi-colors": "^4.1.1",
"autoprefixer": "^9.8.6",
"babel-eslint": "^10.1.0",
"browser-sync": "^2.26.14",
"cheerio": "^1.0.0-rc.5",
"cssnano": "^4.1.10",
"del": "^6.0.0",
"eslint": "^7.18.0",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-prettier": "^3.3.1",
"expose-loader": "^1.0.3",
"fancy-log": "^1.3.3",
"gulp": "^4.0.2",
"gulp-babel": "^8.0.0",
"gulp-cache": "^1.1.3",
"gulp-changed": "^4.0.2",
"gulp-cheerio": "^1.0.0",
"gulp-cli": "^2.3.0",
"gulp-concat": "^2.6.1",
"gulp-consolidate": "^0.2.0",
"gulp-front-matter": "^1.3.0",
"gulp-if": "^3.0.0",
"gulp-imagemin": "^7.1.0",
"gulp-jsbeautifier": "^3.0.1",
"gulp-notify": "^3.2.0",
"gulp-plumber": "^1.2.1",
"gulp-postcss": "^9.0.0",
"gulp-pug": "^4.0.1",
"gulp-rename": "^2.0.0",
"gulp-replace": "^1.0.0",
"gulp-sass": "^4.1.0",
"gulp-sourcemaps": "^3.0.0",
"gulp-svg-sprites": "^4.1.2",
"gulp-svgmin": "^3.0.0",
"gulp-svgstore": "^7.0.1",
"gulp-uglify": "^3.0.2",
"gulp.spritesmith": "^6.11.0",
"husky": "^4.3.8",
"lint-staged": "^10.5.3",
"merge-stream": "^2.0.0",
"minimist": "^1.2.5",
"node-sass-glob-importer": "^5.3.2",
"postcss": "^8.2.4",
"postcss-animation": "^0.0.12",
"postcss-easings": "^3.0.1",
"postcss-flexbugs-fixes": "^5.0.2",
"postcss-inline-svg": "^5.0.0",
"postcss-object-fit-images": "^1.1.2",
"postcss-pseudoelements": "^5.0.0",
"postcss-short": "^5.0.0",
"postcss-sorting": "^6.0.0",
"prettier": "^2.2.1",
"require-yaml": "^0.0.1",
"through2": "^4.0.2",
"vinyl-buffer": "^1.0.1",
"webpack": "^5.18.0",
"webpack-stream": "^6.1.2"
},
"resolutions": {
"natives": "1.1.6"
}
}