-
Notifications
You must be signed in to change notification settings - Fork 40
/
package.json
97 lines (97 loc) · 2.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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "devbridge-frontend",
"version": "2.0.0",
"repository": {
"type": "git",
"url": "git://github.com/devbridge/Front-End-Toolkit.git"
},
"description": "Starter project",
"main": "",
"browserslist": [
">0.25%",
"IE 11",
"not op_mini all"
],
"dependencies": {},
"scripts": {
"lint-scss": "sass-lint \"src/**/*.scss\" --verbose",
"lint-scripts": "eslint \"src/**/*.js\" --fix",
"start": "gulp develop ",
"test-wcag": "node test-accessibility.js"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/devbridge/Front-End-Toolkit/issues"
},
"homepage": "https://github.com/devbridge/Front-End-Toolkit",
"devDependencies": {
"@babel/core": "7.3.4",
"@babel/preset-env": "7.3.4",
"autoprefixer": "9.4.9",
"babel-eslint": "10.0.1",
"babel-loader": "8.0.5",
"check-dependencies": "1.1.0",
"del": "3.0.0",
"eslint": "5.14.1",
"eslint-config-airbnb": "17.1.0",
"eslint-loader": "2.1.2",
"eslint-plugin-import": "2.16.0",
"eslint-plugin-jsx-a11y": "6.2.1",
"eslint-plugin-lodash": "5.1.0",
"eslint-plugin-react": "7.12.4",
"event-stream": "4.0.1",
"gulp": "4.0.0",
"gulp-autoprefixer": "6.0.0",
"gulp-babel": "8.0.0",
"gulp-cache": "1.1.1",
"gulp-changed": "3.2.0",
"gulp-concat": "2.6.1",
"gulp-connect": "5.7.0",
"gulp-csso": "3.0.1",
"gulp-eslint": "5.0.0",
"gulp-htmlhint": "2.2.1",
"gulp-htmlrender": "0.3.0",
"gulp-hub": "4.2.0",
"gulp-if": "2.0.2",
"gulp-ignore": "2.0.2",
"gulp-imagemin": "5.0.3",
"gulp-plumber": "1.2.1",
"gulp-raster-update": "0.1.0",
"gulp-rename": "1.4.0",
"gulp-sass": "4.0.2",
"gulp-sass-lint": "1.4.0",
"gulp-sourcemaps": "2.6.5",
"gulp-svg-sprite": "1.5.0",
"gulp-uglify": "3.0.1",
"gulp-watch": "5.0.1",
"gulplog": "1.0.0",
"imagemin-giflossy": "5.1.10",
"imagemin-mozjpeg": "8.0.0",
"imagemin-pngquant": "7.0.0",
"imagemin-zopfli": "6.0.0",
"lint-staged": "8.1.4",
"pa11y": "5.1.0",
"pa11y-reporter-html": "1.0.0",
"puppeteer": "1.12.2",
"sass-lint": "1.12.1",
"webpack": "4.29.6",
"webpack-stream": "5.2.1",
"yargs": "13.2.1"
},
"lint-staged": {
"./src/**/*.js": [
"eslint --fix",
"git add"
],
"./src/**/*scss": [
"stylelint --verbose",
"git-add"
]
},
"husky": {
"hooks": {
"precommit": "lint-staged"
}
}
}