-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
59 lines (59 loc) · 1.49 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
{
"name": "Pink",
"private": true,
"type": "module",
"description": "Pink",
"devDependencies": {
"@htmlacademy/editorconfig-cli": "^1.0.0",
"autoprefixer": "^10.4.7",
"browser-sync": "^2.27.10",
"del": "^6.1.1",
"eslint": "^8.17.0",
"eslint-config-htmlacademy": "^5.1.2",
"gh-pages": "^4.0.0",
"gulp": "^4.0.2",
"gulp-concat": "^2.6.1",
"gulp-csso": "^4.0.1",
"gulp-dart-sass": "^1.0.2",
"gulp-imagemin": "^8.0.0",
"gulp-plumber": "^1.2.1",
"gulp-postcss": "^9.0.1",
"gulp-posthtml": "^3.0.5",
"gulp-rename": "^2.0.0",
"gulp-sass-glob": "^1.1.0",
"gulp-sourcemaps": "^3.0.0",
"gulp-svgmin": "^4.1.0",
"gulp-svgstore": "^9.0.0",
"gulp-uglify": "^3.0.2",
"gulp-webp": "^4.0.1",
"htmlhint": "^1.1.4",
"postcss-sort-media-queries": "^4.2.1",
"posthtml-include": "^1.7.4",
"stylelint": "^14.9.0",
"stylelint-config-htmlacademy": "^0.1.12"
},
"scripts": {
"editorconfig": "editorconfig-cli",
"test": "npm run editorconfig && npm run stylelint",
"stylelint": "stylelint 'sass/**/*.scss' --syntax scss",
"build": "gulp build",
"start": "npm run build && gulp serve",
"deploy": "gulp deploy"
},
"browserslist": [
"last 2 versions",
"IE 11",
"Firefox ESR"
],
"editorconfig-cli": [
"src/**/*.html",
"*.json",
"*.js",
"src/js/**/*.js",
"src/img/**/*.svg",
"src/scss/**/*.{sass,scss}"
],
"dependencies": {
"normalize.css": "^8.0.1"
}
}