forked from esper-io/dev-docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.94 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
{
"name": "esper-docs",
"version": "2.0.1",
"description": "Esper documentation",
"main": "index.js",
"directories": {
"doc": "docs"
},
"scripts": {
"docs:dev": "vuepress dev docs --no-cache",
"docs:build": "vuepress build docs",
"style-lint": "stylelint --fix \"src/**/*.vue\" \"src/**/*.scss\"",
"lint": "markdownlint */*.md docs/*/*.md docs/home/*/*.md docs/*/*/*/*.md docs/*/*/*/*/*.md docs/*/*/*/*/*/*.md docs/*/*/*/*/*/*/*.md",
"prettier": "prettier --list-different --write \"**/*.{js,json,css,scss,vue,md}\"",
"test": "echo \"Error: no test specified\" && exit 1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/esper-io/dev-docs.git"
},
"keywords": [
"Esper docs"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/esper-io/dev-docs/issues"
},
"homepage": "https://github.com/esper-io/dev-docs#readme",
"dependencies": {
"@dovyp/vuepress-plugin-clipboard-copy": "1.0.0-alpha.7",
"@vuepress/plugin-medium-zoom": "1.9.7",
"eslint-plugin-vue": "8.3.0",
"prettier": "2.5.1",
"vuepress": "1.9.7",
"vuepress-plugin-google-tag-manager": "0.0.5",
"vuepress-plugin-robots": "^1.0.1",
"vuepress-plugin-sitemap": "^2.3.1"
},
"devDependencies": {
"@vuepress/plugin-back-to-top": "1.9.7",
"eslint": "8.7.0",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-vue-libs": "4.0.0",
"husky": "4.3.0",
"imagemin-lint-staged": "0.4.0",
"lint-staged": "12.2.1",
"markdownlint-cli": "0.30.0",
"stylelint": "14.2.0",
"stylelint-config-css-modules": "2.3.0",
"stylelint-config-prettier": "9.0.3",
"stylelint-config-recess-order": "3.0.0",
"stylelint-config-standard": "24.0.0",
"stylelint-scss": "4.1.0",
"vuepress-plugin-check-md": "0.0.2",
"vuepress-plugin-reading-time": "0.1.1"
}
}