forked from mate-academy/layout_dia
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 1.78 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
{
"name": "dia",
"version": "1.0.0",
"description": "Dia landing page",
"main": "index.js",
"scripts": {
"start": "gulp",
"build": "gulp build",
"predeploy": "npm run build",
"deploy": "gh-pages -d dist",
"publish": "deploy",
"lint": "stylelint src/**/*.scss && eslint src/**/*.js && htmllint --rc ./node_modules/@mate-academy/htmllint-config/.htmllintrc src/*.html",
"test": "npm run lint"
},
"keywords": [],
"author": "Mate Academy",
"license": "GPL-3.0",
"devDependencies": {
"@mate-academy/eslint-config": "*",
"@mate-academy/htmllint-config": "*",
"@mate-academy/stylelint-config": "*",
"browser-sync": "^2.26.3",
"colors": "^1.3.3",
"eslint": "^5.16.0",
"eslint-plugin-node": "^9.0.1",
"gh-pages": "2.0.0",
"gulp": "^4.0.2",
"gulp-autoprefixer": "^6.0.0",
"gulp-clean": "^0.4.0",
"gulp-eslint": "^5.0.0",
"gulp-htmllint": "0.0.16",
"gulp-replace-path": "^0.4.0",
"gulp-sass": "^4.0.2",
"gulp-sourcemaps": "^2.6.5",
"gulp-stylelint": "^9.0.0",
"htmllint": "^0.7.3",
"htmllint-cli": "0.0.7",
"husky": "^2.2.0",
"lint-staged": "^8.1.6",
"stylelint": "^10.0.1",
"stylelint-config-recommended-scss": "^3.3.0",
"stylelint-scss": "^3.6.1"
},
"lint-staged": {
"linters": {
"*.scss": [
"stylelint",
"git add"
],
"*.js": [
"eslint",
"git add"
],
"*.html": [
"htmllint --rc ./node_modules/@mate-academy/htmllint-config/.htmllintrc",
"git add"
]
},
"ignore": [
"**/dist/**",
"**/lib/**"
]
},
"husky": {
"hooks": {
"post-commit": "git update-index --again",
"pre-commit": "lint-staged"
}
},
"browserslist": [
"last 2 versions"
]
}