This repository has been archived by the owner on Nov 10, 2022. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 243
/
package.json
82 lines (82 loc) · 2.6 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
{
"name": "eslint-website",
"private": true,
"version": "1.0.0",
"description": "The codebase for the ESLint website (eslint.org)",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/eslint/website.git"
},
"bugs": {
"url": "https://github.com/eslint/website/issues"
},
"homepage": "https://github.com/eslint/website#readme",
"engines": {
"node": ">=12.0.0"
},
"scripts": {
"install:demo": "cd src/js/demo && npm install --no-package-lock",
"build:eleventy": "eleventy --quiet",
"build:webpack": "webpack build --mode=production",
"build:less": "lessc src/styles/main.less _site/assets/styles/main.css --clean-css --source-map=_site/assets/styles/main.css.map",
"build": "npm run install:demo && npm run build:eleventy && npm run build:less && npm run build:webpack",
"start:eleventy": "cross-env NODE_ENV=development eleventy --watch",
"start:webpack": "webpack watch --mode=development",
"start": "node _tools/dev-server.js",
"lint": "eslint --ext=.js,.jsx .",
"test": "npm run lint",
"fix": "npm run lint -- --fix",
"postinstall": "npm run install:demo"
},
"dependencies": {
"anchor-js": "^4.2.2",
"bootstrap": "^3.4.1",
"bootstrap.native": "^2.0.27",
"codemirror": "^5.58.2",
"docsearch.js": "^2.6.3",
"highlight.js": "^10.4.1",
"react": "^16.13.1",
"react-dom": "^16.13.1"
},
"devDependencies": {
"@11ty/eleventy": "^0.11.0",
"@babel/core": "^7.10.2",
"@babel/preset-env": "^7.10.2",
"@babel/preset-react": "^7.10.1",
"@octokit/graphql": "^4.5.0",
"@octokit/rest": "^18.0.3",
"babel-loader": "^8.2.2",
"chokidar": "^3.4.0",
"core-js": "^3.6.5",
"cross-env": "^7.0.2",
"css-loader": "^5.0.2",
"eslint": "^7.2.0",
"eslint-config-eslint": "^7.0.0",
"eslint-plugin-jsdoc": "^27.0.4",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-react": "^7.20.0",
"express": "^4.17.1",
"github-slugger": "^1.3.0",
"gray-matter": "^4.0.3",
"html-entities": "^1.3.1",
"html-minifier": "^4.0.0",
"htmlparser2": "^4.1.0",
"js-yaml": "^3.14.0",
"less": "^3.11.3",
"less-loader": "^8.0.0",
"less-plugin-clean-css": "^1.5.1",
"luxon": "^1.24.1",
"markdown-it": "^12.3.2",
"markdown-it-anchor": "^6.0.0",
"markdown-it-container": "^3.0.0",
"morgan": "^1.10.0",
"node-fetch": "^2.6.7",
"node-polyfill-webpack-plugin": "^1.0.3",
"regenerator-runtime": "^0.13.5",
"style-loader": "^2.0.0",
"webpack": "^5.24.0",
"webpack-cli": "^4.5.0"
}
}