-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
61 lines (61 loc) · 1.69 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
{
"name": "magic-vacation",
"version": "1.0.0",
"description": "Личный проект «Таинственный отпуск» от HTML Academy",
"devDependencies": {
"@htmlacademy/editorconfig-cli": "1.x",
"copy-webpack-plugin": "5.1.1",
"css-loader": "3.5.1",
"csso-webpack-plugin": "2.0.0-beta.1",
"eslint": "6.5.1",
"eslint-config-htmlacademy": "0.5.2",
"gulp": "4.0.x",
"gulp-imagemin": "5.0.3",
"gulp-rename": "1.4.0",
"gulp-svgstore": "7.0.1",
"gulp-webp": "4.0.1",
"html-loader": "1.1.0",
"html-webpack-plugin": "4.2.0",
"lodash": "4.17.15",
"mini-css-extract-plugin": "0.9.0",
"posthtml": "0.12.0",
"posthtml-include": "1.2.0",
"posthtml-loader": "1.0.2",
"posthtml-parser": "0.4.2",
"sass": "1.32.8",
"sass-loader": "8.0.2",
"style-loader": "1.1.3",
"stylelint": "9.10.x",
"stylelint-config-htmlacademy": "0.1.x",
"webpack": "4.41.5",
"webpack-cli": "3.3.11",
"webpack-dev-server": "3.10.3",
"write-file-webpack-plugin": "4.5.1"
},
"scripts": {
"editorconfig": "editorconfig-cli",
"stylelint": "stylelint \"source/sass/**/*.scss\" --syntax scss",
"test": "npm run editorconfig && npm run stylelint && eslint source/js/",
"build": "webpack",
"webp": "gulp webp",
"sprite": "gulp sprite",
"start": "webpack-dev-server --open"
},
"browserslist": [
"last 2 versions",
"Firefox ESR"
],
"editorconfig-cli": [
"*.json",
"*.js",
"source/*.html",
"source/js/**/*.js",
"source/img/**/*.svg",
"source/sass/**/*.{sass,scss}"
],
"dependencies": {
"normalize.css": "8.0.1",
"swiper": "5.3.8",
"three": "0.115.0"
}
}