This repository was archived by the owner on Apr 23, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.34 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 1.34 KB
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
{
"name": "gulp-template",
"version": "v1.1.4",
"author": "Vladimir Banduristov <hello@webzlodimir.ru>",
"license": "MIT",
"scripts": {
"start": "gulp",
"build": "gulp build --production true"
},
"devDependencies": {
"@babel/core": "^7.4.3",
"@babel/preset-env": "^7.4.3",
"autoprefixer": "^9.5.0",
"babel-preset-latest": "^6.24.1",
"browser-sync": "^2.26.3",
"cssnano": "^4.1.10",
"del": "^4.0.0",
"gulp": "^4.0.0",
"gulp-babel": "^8.0.0-beta.2",
"gulp-changed": "^3.2.0",
"gulp-cli": "^2.0.1",
"gulp-concat": "^2.6.1",
"gulp-hash-src": "^0.1.6",
"gulp-jsbeautifier": "^3.0.1",
"gulp-postcss": "^8.0.0",
"gulp-posthtml": "^3.0.5",
"gulp-prettier": "^2.1.0",
"gulp-sass": "^5.1.0",
"gulp-sourcemaps": "^2.6.5",
"gulp-svg-sprite": "^1.5.0",
"gulp-watch": "^5.0.1",
"husky": "^4.0.6",
"jquery": "^3.3.1",
"lint-staged": "^9.5.0",
"posthtml-include": "^1.4.3",
"prettier": "^1.19.1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"prettier --write",
"git add"
],
"*.css": [
"prettier --write",
"git add"
],
"*.scss": [
"prettier --write",
"git add"
]
},
"dependencies": {
"gulp-uglify-es": "^2.0.0",
"posthtml-remove-attributes": "^1.0.0",
"posthtml-richtypo": "^1.0.2",
"richtypo-rules-ru": "^4.0.2",
"sass": "^1.68.0"
}
}