-
Notifications
You must be signed in to change notification settings - Fork 39
/
package.json
92 lines (92 loc) · 2.47 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
{
"name": "accessibility-developer-guide",
"version": "0.0.1",
"description": "",
"repository": "github:Access4all/adg",
"main": "index.js",
"scripts": {
"start": "gulp --webpackWatch",
"build": "gulp build",
"rebuild": "gulp rebuild",
"gulp": "gulp",
"lint": "eslint --fix \"**/*.js\"",
"format": "prettier --write \"**/*.{js,scss}\"",
"update": "npx npm-check -u",
"prepare": "husky install"
},
"keywords": [],
"author": "",
"license": "ISC",
"browserslist": [
"defaults",
"> 1%",
"iOS >= 8.4"
],
"engines": {
"node": ">=14"
},
"devDependencies": {
"@babel/core": "^7.21.8",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/preset-env": "^7.21.5",
"@gerhobbelt/markdown-it-responsive": "^0.1.1-3",
"ansi-colors": "^4.1.3",
"autoprefixer": "^10.4.14",
"babel-loader": "^9.1.2",
"browser-sync": "^2.29.1",
"del": "^6.1.1",
"eslint": "^8.39.0",
"eslint-config-prettier": "^8.8.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.7.0",
"eslint-plugin-promise": "^6.1.1",
"fancy-log": "^2.0.0",
"feed": "^4.2.2",
"front-matter": "^4.0.2",
"gulp": "^4.0.2",
"gulp-changed": "^4.0.3",
"gulp-concat": "^2.6.1",
"gulp-front-matter": "^1.3.0",
"gulp-hb": "^8.0.0",
"gulp-plumber": "^1.2.1",
"gulp-postcss": "^9.0.1",
"gulp-prettify": "^0.5.0",
"gulp-sass": "^5.1.0",
"gulp.spritesmith": "^6.13.0",
"highlight.js": "^11.8.0",
"husky": "^8.0.3",
"import-fresh": "^3.3.0",
"jsdom": "^22.0.0",
"lint-staged": "^13.2.2",
"lodash": "^4.17.21",
"markdown-it": "^13.0.1",
"markdown-it-abbr": "^1.0.4",
"markdown-it-attrs": "^4.1.6",
"markdown-it-deflist": "^2.1.0",
"markdown-it-for-inline": "^0.1.1",
"markdown-it-kbd": "^2.2.2",
"markdown-it-regexp": "^0.4.0",
"markdown-it-replacements": "^1.0.2",
"markdown-it-samp": "^0.0.4",
"markdown-it-toc-done-right": "^4.2.0",
"merge-stream": "^2.0.0",
"minimist": "^1.2.8",
"node-sass": "^8.0.0",
"node-sass-glob-importer": "^5.3.2",
"normalize-strings": "^1.1.1",
"postcss": "^8.4.23",
"prettier": "^2.8.8",
"sharp": "^0.32.1",
"sitemap": "^7.1.1",
"webpack": "^5.82.0"
},
"dependencies": {
"details-polyfill": "^1.2.0",
"jquery": "^3.6.4"
},
"lint-staged": {
"*.js": "eslint --fix",
"*.{js,scss}": "prettier --write"
}
}