-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.13 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.13 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "legancy",
"description": "",
"author": "Denis Bogdanov",
"version": "1.0.0",
"license": "ISC",
"main": "gulpfile.js",
"scripts": {
"start": "cross-env NODE_ENV=development gulp start",
"build": "cross-env NODE_ENV=production gulp build",
"eslint": "eslint src/",
"lint-fix": "stylelint --fix scss ./src/**/*.scss",
"lint-check": "stylelint --syntax scss ./src/**/*.scss"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js}": [
"eslint --max-warnings=0",
"prettier --write",
"git add"
],
"**/*.scss": [
"stylelint --syntax scss",
"git add"
]
},
"devDependencies": {
"@babel/core": "^7.10.2",
"@babel/plugin-proposal-export-default-from": "^7.12.1",
"@babel/plugin-proposal-optional-chaining": "^7.12.7",
"@babel/preset-env": "^7.10.2",
"babel-loader": "^8.2.2",
"browser-sync": "^2.26.12",
"cache-loader": "^4.1.0",
"cross-env": "^7.0.2",
"del": "^6.0.0",
"eslint": "^7.18.0",
"eslint-config-prettier": "^7.2.0",
"gulp": "^4.0.2",
"gulp-autoprefixer": "^5.0.0",
"gulp-babel": "^8.0.0",
"gulp-changed": "^4.0.2",
"gulp-concat": "^2.6.1",
"gulp-csso": "^4.0.1",
"gulp-debug": "^4.0.0",
"gulp-html-beautify": "^1.0.1",
"gulp-imagemin": "^7.1.0",
"gulp-plumber": "^1.2.1",
"gulp-rename": "^1.4.0",
"gulp-sass": "^5.1.0",
"gulp-sourcemaps": "^2.6.5",
"gulp-svgstore": "^7.0.1",
"gulp-twig": "^1.2.0",
"gulp-uglify": "^3.0.2",
"husky": "^4.3.0",
"lint-staged": "^10.4.2",
"node-normalize-scss": "^8.0.0",
"node-sass": "^7.0.1",
"prettier": "2.2.1",
"run-sequence": "^2.2.1",
"stylelint": "^13.7.2",
"stylelint-config-prettier": "^8.0.2",
"vue-loader": "^15.9.6",
"vue-svg-loader": "^0.16.0",
"vue-template-compiler": "^2.6.12",
"webpack": "^5.68.0",
"webpack-stream": "^7.0.0"
},
"dependencies": {
"@babel/plugin-proposal-class-properties": "^7.13.0",
"@babel/plugin-proposal-private-methods": "^7.13.0",
"gulp-sourcemap": "^1.0.1",
"gulp-tap": "^2.0.0"
}
}