forked from eslint/eslint.org
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
129 lines (129 loc) · 4.96 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
{
"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": "16.14.0"
},
"license": "Apache-2.0",
"scripts": {
"images": "imagemin '_site/assets/images' --out-dir='_site/assets/images'",
"install:playground": "cd src/playground && npm install --no-package-lock",
"watch:sass": "sass --watch src/assets/scss:src/assets/css",
"watch:eleventy": "cross-env IS_DEV=true eleventy --serve --port=2022",
"watch:webpack": "webpack watch --mode=development",
"build:sass": "sass --no-source-map --style=compressed src/assets/scss:src/assets/css",
"build:eleventy": "npx @11ty/eleventy",
"build:webpack": "webpack --mode=production --progress",
"fetch:team": "node tools/fetch-team-data.js",
"fetch:stats": "node tools/fetch-stats.js",
"fetch:sponsors": "node tools/fetch-sponsors.js",
"fetch": "npm-run-all --parallel fetch:*",
"start": "npm-run-all build:sass --parallel watch:*",
"build": "npm-run-all install:playground build:sass build:eleventy build:webpack images",
"minify:svg": "svgo -r -f ./",
"validate:links": "cross-env NODE_OPTIONS=--max-old-space-size=4096 node tools/validate-links.js",
"lint:js": "eslint --ext=.js,.jsx .",
"lint:md": "markdownlint \"**/*.md\" ",
"lint:scss": "stylelint \"**/*.scss\"",
"lint": "npm-run-all --parallel lint:*",
"lint:fix:js": "eslint --ext=.js,.jsx . --fix",
"lint:fix:scss": "stylelint \"**/*.scss\" --fix",
"lint:fix:md": "markdownlint --fix \"**/*.md\"",
"fix": "npm-run-all --parallel lint:fix:*"
},
"lint-staged": {
"**/*.{js,jsx}": "eslint --fix",
"*.md": "markdownlint --fix",
"*.scss": "stylelint \"**/*.scss\" --fix",
"**/*.svg": "npx svgo -r --multipass"
},
"gitHooks": {
"pre-commit": "lint-staged"
},
"devDependencies": {
"@11ty/eleventy": "^1.0.0",
"@11ty/eleventy-img": "^2.0.0",
"@11ty/eleventy-navigation": "^0.3.2",
"@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": "*",
"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": "^8.19.0",
"eslint-config-eslint": "^7.0.0",
"eslint-plugin-jsdoc": "^39.2.0",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-react": "^7.29.4",
"eslint-plugin-react-hooks": "^4.5.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",
"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",
"got": "^11.8.3",
"metascraper": "^5.25.7",
"metascraper-description": "^5.25.7",
"metascraper-image": "^5.25.7",
"metascraper-logo": "^5.25.7",
"metascraper-logo-favicon": "^5.25.7",
"metascraper-publisher": "^5.25.7",
"metascraper-title": "^5.25.7",
"metascraper-url": "^5.25.7",
"react": "^18.1.0",
"react-dom": "^18.1.0",
"react-select": "^5.3.2",
"react-split": "^2.0.14"
}
}