-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
96 lines (96 loc) Β· 2.34 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
{
"name": "BB8",
"version": "3.0.0",
"description": "Starter kit for automating tasks in everyday front-end development.",
"author": "Ramil Mamedov <rommelmamedov@gmail.com> (https://github.com/rommelmamedov)",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/ramilmamedo/bb8/"
},
"bugs": {
"url": "https://github.com/ramilmamedo/bb8/issues"
},
"homepage": "https://github.com/RamilMamedo/bb8/blob/master/README.md",
"scripts": {
"dev": "gulp",
"start": "gulp",
"build": "gulp build",
"pretty-quick": "pretty-quick",
"clean": "rm -rf node_modules/ package-lock.json yarn.lock && yarn && yarn start"
},
"dependencies": {
"@babel/core": "7.12.10",
"@babel/preset-env": "7.12.11",
"@babel/register": "7.12.10",
"browser-sync": "2.26.13",
"del": "6.0.0",
"gulp": "4.0.2",
"merge-stream": "2.0.0"
},
"devDependencies": {
"autoprefixer": "10.2.3",
"css-mqpacker": "7.0.0",
"cssnano": "4.1.10",
"gulp-babel": "8.0.0",
"gulp-concat": "2.6.1",
"gulp-debug": "4.0.0",
"gulp-eslint": "6.0.0",
"gulp-favicons": "3.0.0",
"gulp-filter": "6.0.0",
"gulp-html-beautify": "1.0.1",
"gulp-htmllint": "0.0.19",
"gulp-htmlmin": "5.0.1",
"gulp-imagemin": "7.1.0",
"gulp-load-plugins": "2.0.6",
"gulp-newer": "1.4.0",
"gulp-nunjucks-render": "2.2.3",
"gulp-plumber": "1.2.1",
"gulp-postcss": "9.0.0",
"gulp-purifycss": "0.2.0",
"gulp-rename": "2.0.0",
"gulp-sass": "4.1.0",
"gulp-size": "3.0.0",
"gulp-stylelint": "13.0.0",
"gulp-svg-sprite": "1.5.0",
"gulp-uglify": "3.0.2",
"gulp-w3c-html-validator": "3.0.0",
"gulp-webp": "4.0.1",
"stylelint": "13.9.0",
"stylelint-config-recommended": "3.0.0",
"eslint-plugin-prettier": "3.3.1",
"husky": "4.3.8",
"prettier": "2.2.1",
"pretty-quick": "3.1.0"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"eslintConfig": {
"extends": "eslint:recommended"
},
"keywords": [
"bb8",
"front-end",
"boilerplate",
"starter-kit",
"gulp.js",
"node.js",
"browsersync",
"imagemin",
"favicons",
"css",
"html",
"javascript",
"stylelint",
"eslint",
"sass",
"csso",
"postcss",
"cssnano",
"nunjunks",
"purifycss"
]
}