-
-
Notifications
You must be signed in to change notification settings - Fork 63
/
package.json
131 lines (131 loc) · 4.49 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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
{
"name": "eslint.org",
"private": true,
"version": "1.0.0",
"description": "The codebase for the ESLint website (eslint.org)",
"main": "index.js",
"keywords": [],
"author": "",
"repository": "eslint/eslint.org",
"funding": "https://opencollective.com/eslint",
"bugs": "https://github.com/eslint/eslint.org/issues/",
"engines": {
"node": ">= 20"
},
"license": "Apache-2.0",
"scripts": {
"build": "npm-run-all install:playground build:sass build:website build:playground build:minify-images",
"build:minify-images": "imagemin '_site/assets/images' --out-dir='_site/assets/images'",
"build:minify-svg": "svgo -r -f ./",
"build:playground": "webpack --mode=production --progress",
"build:playground:watch": "webpack watch --mode=development",
"build:sass": "sass --no-source-map --style=compressed src/assets/scss:src/assets/css",
"build:sass:watch": "sass --watch src/assets/scss:src/assets/css",
"build:sponsors": "node tools/generate-sponsors.js",
"build:website": "npx @11ty/eleventy",
"build:website:watch": "cross-env IS_DEV=true eleventy --serve --port=2022",
"fetch": "npm-run-all --parallel fetch:*",
"fetch:stats": "node tools/fetch-stats.js",
"fetch:sponsors": "node tools/fetch-sponsors.js",
"fetch:team": "node tools/fetch-team-data.js",
"install:playground": "cd src/playground && npm install --no-package-lock",
"lint": "npm-run-all --parallel lint:js lint:md lint:scss",
"lint:fix": "npm-run-all --parallel lint:fix:*",
"lint:js": "eslint .",
"lint:fix:js": "eslint . --fix",
"lint:links": "cross-env NODE_OPTIONS=--max-old-space-size=4096 node tools/validate-links.js",
"lint:md": "markdownlint \"**/*.md\" ",
"lint:fix:md": "markdownlint --fix \"**/*.md\"",
"lint:scss": "stylelint \"**/*.scss\"",
"lint:fix:scss": "stylelint \"**/*.scss\" --fix",
"fmt": "prettier --write .",
"fmt:check": "prettier --check .",
"start": "npm-run-all build:sass --parallel *:*:watch"
},
"lint-staged": {
"**/*.{js,jsx}": [
"eslint --fix",
"prettier --write"
],
"*.scss": [
"stylelint \"**/*.scss\" --fix",
"prettier --write"
],
"*.json": "prettier --write",
"*.md": "markdownlint --fix",
"**/*.svg": "npx svgo -r --multipass"
},
"gitHooks": {
"pre-commit": "lint-staged"
},
"devDependencies": {
"@11ty/eleventy": "^2.0.1",
"@11ty/eleventy-img": "^3.1.1",
"@11ty/eleventy-navigation": "^0.3.5",
"@11ty/eleventy-plugin-rss": "^1.1.1",
"@11ty/eleventy-plugin-syntaxhighlight": "^3.1.2",
"@babel/core": "^7.17.5",
"@babel/preset-env": "^7.16.11",
"@babel/preset-react": "^7.16.7",
"@munter/tap-render": "^0.2.0",
"@octokit/graphql": "^4.8.0",
"@octokit/rest": "^18.12.0",
"babel-loader": "^8.2.3",
"cheerio": "*",
"common-tags": "^1.8.2",
"cross-env": "^7.0.3",
"css-loader": "^6.7.1",
"dom-parser": "^0.1.6",
"download-stats": "^0.3.4",
"eleventy-plugin-nesting-toc": "^1.3.0",
"eleventy-plugin-page-assets": "^0.3.0",
"eleventy-plugin-reading-time": "^0.0.1",
"eslint": "^9.13.0",
"eslint-config-eslint": "^11.0.0",
"eslint-plugin-jsx-a11y": "^6.10.1",
"eslint-plugin-react": "^7.37.1",
"eslint-plugin-react-hooks": "^5.0.0",
"globals": "^15.1.0",
"gray-matter": "^4.0.3",
"hyperlink": "^5.0.4",
"imagemin": "^8.0.1",
"imagemin-cli": "^7.0.0",
"js-yaml": "^3.14.1",
"lint-staged": "^13.0.3",
"markdown-it": "^12.2.0",
"markdown-it-anchor": "^8.1.2",
"markdownlint-cli": "^0.32.1",
"node-polyfill-webpack-plugin": "^1.1.4",
"npm-run-all": "^4.1.5",
"prettier": "^3.3.2",
"rimraf": "^3.0.2",
"sass": "^1.38.0",
"sass-loader": "^13.0.2",
"semver": "^7.3.5",
"slugify": "^1.6.3",
"style-loader": "^3.3.1",
"stylelint": "^14.13.0",
"stylelint-config-standard-scss": "^5.0.0",
"tap-spot": "^1.1.2",
"undici": "^4.13.0",
"webpack": "^5.70.0",
"webpack-cli": "^4.9.2",
"yorkie": "^2.0.0"
},
"dependencies": {
"@codemirror/highlight": "0.19.7",
"@codemirror/history": "0.19.2",
"@codemirror/lang-javascript": "0.19.7",
"@codemirror/matchbrackets": "0.19.4",
"@codemirror/state": "0.19.9",
"@codemirror/tooltip": "0.19.16",
"@codemirror/view": "0.19.47",
"@uiw/react-codemirror": "4.5.1",
"algoliasearch": "^4.12.1",
"crelt": "^1.0.5",
"react": "^18.1.0",
"react-dom": "^18.1.0",
"react-select": "^5.3.2",
"react-split": "^2.0.14"
}
}