-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 3.95 KB
/
Copy pathpackage.json
File metadata and controls
83 lines (83 loc) · 3.95 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
{
"name": "www.metabase.com",
"version": "1.0.0",
"description": "Website for Metabase.com",
"repository": {
"type": "git",
"url": "https://github.com/metabase/metabase.github.io"
},
"author": "GitHub",
"license": "MIT",
"packageManager": "bun@1.3.14",
"bugs": {
"url": "https://github.com/metabase/metabase/issues"
},
"scripts": {
"lint-scripts": "eslint .",
"lint-scripts-fix": "eslint . --fix",
"lint-styles": "stylelint '**/*.scss' --quiet && stylelint '**/*.css' --quiet",
"lint-styles-fix": "stylelint '**/*.scss' --fix && stylelint '**/*.css' --fix",
"lint-markdown": "npx markdownlint '**/*.{md,markdown}' --ignore-path=.markdownlintignore",
"lint-markdown-fix": "npx markdownlint '**/*.{md,markdown}' --ignore-path=.markdownlintignore --fix",
"lint-html": "npx linthtml '**/*.{html,htm}'",
"lint-markups": "bun run lint-markdown && bun run lint-html",
"lint-fix": "lint-scripts-fix && lint-styles-fix && lint-markdown-fix",
"lint-links": "node script/_linter/bin/links.js",
"frontMatter-blog": "node script/_linter/bin/front-matter.js --folder _posts --config script/_linter/config/blog.json",
"frontMatter-glossary": "node script/_linter/bin/front-matter.js --config script/_linter/config/glossary.json --folder _glossary",
"opengraph-community": "node script/_data/bin/opengraph.js --folder _community_posts --properties category_filters,title,author,author_img,organization",
"opengraph-case-studies": "node script/_data/bin/opengraph.js --folder _case_studies --properties title,logo_image,image",
"opengraph-dashboards": "node script/_data/bin/opengraph.js --folder dashboards --properties title,image",
"opengraph-data-sources": "node script/_data/bin/opengraph.js --folder _data-sources --properties title,summary,logo_image",
"opengraph-docs": "node script/_data/bin/opengraph.js --folder _docs --properties version,category,title",
"opengraph-glossary": "node script/_data/bin/opengraph.js --folder _glossary --properties title",
"opengraph-learn": "node script/_data/bin/opengraph.js --folder _learn --properties title,image,categories",
"all-opengraphs": "bun run opengraph-community && bun run opengraph-case-studies && bun run opengraph-dashboards && bun run opengraph-data-sources && bun run opengraph-docs && bun run opengraph-glossary && bun run opengraph-learn",
"shared-chrome": "node script/_data/bin/shared-chrome.js",
"jekyll:clean": "rm -f -r _site && rm -f -r .sass-cache && rm -f .jekyll-metadata",
"jekyll:start": "bun run shared-chrome && bundle exec jekyll serve --config _config.dev.yml --livereload --incremental --port=4321",
"jekyll:clean-start": "bun run jekyll:clean && bun run jekyll:start",
"jekyll:build": "bun run shared-chrome && bundle exec jekyll build --config _config.yml",
"cloudflare:remove-heavy-files": "find ./_site -type f -size +25M | xargs rm"
},
"homepage": "https://metabase.com",
"dependencies": {
"cpr": "^0.4.0",
"es6-promise": "^3.1.2",
"glob": "^5.0.10",
"graceful-fs": "^4.2.10",
"gray-matter": "^4.0.3",
"gunzip-maybe": "^1.1.0",
"mkdirp": "^0.5.2",
"nugget": "^1.5.1",
"request": "^2.55.0",
"rimraf": "^2.3.3",
"tar-fs": "^1.5.0",
"through2": "^0.6.5",
"titlecase": "^1.0.2",
"yamljs": "^0.2.3"
},
"devDependencies": {
"@html-eslint/eslint-plugin": "^0.13.2",
"@html-eslint/parser": "^0.13.2",
"@linthtml/linthtml": "^0.8.6",
"@linthtml/linthtml-config-recommended": "^0.1.0",
"eslint": "^8.29.0",
"eslint-plugin-frontmatter": "^0.0.8",
"eslint-plugin-markdown": "^2.2.1",
"eslint-plugin-mdx": "^2.0.0",
"eslint-plugin-react": "^7.30.0",
"markdownlint-cli": "^0.33.0",
"prettier": "^1.18.2",
"semver": "^7.7.2",
"stylelint": "^14.9.0",
"stylelint-config-standard-scss": "^4.0.0",
"stylelint-order": "^5.0.0"
},
"resolutions": {
"graceful-fs": "^4.2.9"
},
"overrides": {
"graceful-fs": "^4.2.9"
}
}