forked from meilisearch/documentation
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 2.18 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
{
"name": "documentation",
"version": "1.0.0",
"description": "Documentation for Meilisearch",
"main": "index.js",
"scripts": {
"pretest": "yarn style",
"test": "yarn check-links",
"prebuild": "yarn test",
"build": "vuepress build .",
"dev": "vuepress dev",
"check-links": "yarn check-md && yarn check-config-paths",
"check-md": "vuepress check-md .",
"style": "yarn lint && yarn marklint",
"check-config-paths": "vuepress check-config-paths .",
"style:fix": "yarn lint:fix && yarn marklint:fix",
"lint": "npx eslint . --ext .js,.vue",
"lint:fix": "npx eslint . --ext .js,.vue --fix",
"marklint:fix": "markdownlint '**/*.md' --config .markdownlint.jsonc --fix",
"marklint": "markdownlint '**/*.md' --config .markdownlint.jsonc"
},
"repository": {
"type": "git",
"url": "[email protected]:meilisearch/public/documentation.git"
},
"keywords": [
"documentation",
"vuepress",
"meilisearch"
],
"author": "tpayet",
"license": "MIT",
"dependencies": {
"@bidoubiwa/vuepress-plugin-element-tabs": "^0.2.9",
"vuepress": "^1.9.8",
"vuepress-plugin-code-copy": "^1.0.6",
"vuepress-plugin-container": "^2.1.5",
"vuepress-plugin-img-lazy": "^1.0.4",
"vuepress-plugin-meilisearch": "^0.13.0",
"vuepress-plugin-seo": "^0.1.4",
"vuepress-plugin-sitemap": "^2.3.1",
"vuepress-plugin-zooming": "^1.1.8",
"vuepress-theme-default-prefers-color-scheme": "^2.0.0",
"vuex": "^3.6.2"
},
"engines": {
"node": ">=14 <=16"
},
"resolutions": {
"vuepress-plugin-check-md/check-md": "https://github.com/bidoubiwa/check-md#add_ignore_pattern"
},
"devDependencies": {
"babel-eslint": "^10.1.0",
"bent": "^7.3.12",
"eslint": "^7.25.0",
"eslint-config-prettier": "^8.1.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-promise": "^4.3.1",
"eslint-plugin-standard": "^5.0.0",
"eslint-plugin-vue": "^7.9.0",
"js-yaml": "^3.14.1",
"markdownlint-cli": "^0.33.0",
"vue-eslint-parser": "^9.1.0",
"vuepress-plugin-check-md": "^0.0.2"
}
}