forked from eslint/archive-website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 2.42 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
{
"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 --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 -w --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.54.0",
"docsearch.js": "^2.6.3",
"highlight.js": "^10.0.3",
"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": "^17.11.0",
"babel-loader": "^8.1.0",
"chokidar": "^3.4.0",
"core-js": "^3.6.5",
"cross-env": "^7.0.2",
"css-loader": "^3.5.3",
"eslint": "^7.2.0",
"eslint-config-eslint": "^6.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",
"html-entities": "^1.3.1",
"html-minifier": "^4.0.0",
"htmlparser2": "^4.1.0",
"js-yaml": "^3.14.0",
"json-loader": "^0.5.2",
"less": "^3.11.3",
"less-loader": "^6.1.0",
"less-plugin-clean-css": "^1.5.1",
"luxon": "^1.24.1",
"morgan": "^1.10.0",
"node-fetch": "^2.6.0",
"regenerator-runtime": "^0.13.5",
"style-loader": "^1.2.1",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11"
}
}