-
Notifications
You must be signed in to change notification settings - Fork 43
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.31 KB
/
package.json
File metadata and controls
88 lines (88 loc) · 2.31 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
80
81
82
83
84
85
86
87
88
{
"name": "accessibility-developer-guide",
"version": "0.0.1",
"description": "",
"repository": "github:Access4all/adg",
"main": "index.js",
"type": "module",
"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"
},
"keywords": [],
"author": "",
"license": "ISC",
"browserslist": [
"defaults",
"> 1%",
"iOS >= 8.4"
],
"engines": {
"node": ">=20"
},
"devDependencies": {
"@babel/core": "^7.29.0",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/preset-env": "^7.29.2",
"@eslint/js": "^10.0.1",
"@gerhobbelt/markdown-it-responsive": "^0.1.1-3",
"autoprefixer": "^10.4.27",
"babel-loader": "^10.1.1",
"browser-sync": "^3.0.4",
"del": "^8.0.1",
"eslint": "^10.1.0",
"eslint-plugin-import-x": "^4.16.2",
"feed": "^5.2.0",
"front-matter": "^4.0.2",
"globals": "^17.4.0",
"gulp": "^5.0.1",
"gulp-changed": "^5.0.4",
"gulp-concat": "^2.6.1",
"gulp-front-matter": "^1.3.0",
"gulp-hb": "^8.0.0",
"gulp-plumber": "^1.2.1",
"gulp-postcss": "^10.0.0",
"gulp-prettify": "^0.5.0",
"gulp-sass": "^6.0.1",
"gulp.spritesmith": "^6.13.1",
"highlight.js": "^11.11.1",
"husky": "^9.1.7",
"jsdom": "^29.0.1",
"lint-staged": "^17.0.2",
"markdown-it": "^14.1.1",
"markdown-it-abbr": "^2.0.0",
"markdown-it-attrs": "^4.3.1",
"markdown-it-deflist": "^3.0.0",
"markdown-it-for-inline": "^2.0.1",
"markdown-it-kbd": "^3.0.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",
"node-sass-glob-importer": "^5.3.3",
"normalize-strings": "^1.1.1",
"ordered-read-streams": "^2.0.0",
"postcss": "^8.5.8",
"prettier": "^3.8.1",
"sass": "^1.98.0",
"sharp": "^0.34.5",
"sitemap": "^9.0.1",
"through2": "^4.0.2",
"webpack": "^5.105.4"
},
"dependencies": {
"core-js": "^3.49.0",
"details-polyfill": "^1.2.0",
"jquery": "^4.0.0"
},
"lint-staged": {
"*.js": "eslint --fix",
"*.{js,scss}": "prettier --write"
}
}