-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.17 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
{
"name": "@gny/gny-docs",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"docs:dev": "vuepress dev docs",
"docs:build": "vuepress build docs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/GNYIO/gny-docs.git"
},
"keywords": [],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/GNYIO/gny-docs/issues"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{md}": [
"prettier --write",
"git add"
],
"*.{js}": [
"prettier --single-quote --trailing-comma es5 --write",
"git add"
]
},
"homepage": "https://github.com/GNYIO/gny-docs#readme",
"devDependencies": {
"husky": "^3.0.5",
"lint-staged": "^9.3.0",
"prettier": "^1.18.2",
"vuepress": "^1.8.2",
"vuepress-plugin-check-md": "^0.0.2",
"vuepress-plugin-element-tabs": "^0.2.8"
},
"dependencies": {
"vue-property-decorator": "^9.1.2",
"vuepress-plugin-code-copy": "^1.0.6",
"vuepress-plugin-seo": "^0.1.4",
"vuepress-plugin-zooming": "^1.1.8",
"vuepress-theme-default-prefers-color-scheme": "^2.0.0"
}
}