This repository has been archived by the owner on May 13, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 126
/
package.json
75 lines (75 loc) · 1.91 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
{
"name": "@vuepress/theme-blog",
"version": "2.3.3",
"description": "Default blog theme for VuePress",
"repository": {
"type": "git",
"url": "ulivz/vuepress-theme-blog"
},
"license": "MIT",
"author": "ulivz<chl814@foxmail.com>",
"files": [
"index.js",
"styles",
"layouts",
"global-components",
"fonts",
"components"
],
"main": "index.js",
"scripts": {
"docs:build": "vuepress build docs",
"docs:dev": "vuepress dev docs",
"example:build": "vuepress build example --temp example/.temp",
"example:dev": "vuepress dev example --temp example/.temp",
"lint": "eslint . --ext .js,.vue",
"prepublishOnly": "npm run test && npm run example:build && conventional-changelog -p angular -r 2 -i CHANGELOG.md -s",
"test": "jest"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,vue}": [
"eslint --fix",
"git add"
],
"package.json": [
"sort-package-json",
"git add"
]
},
"dependencies": {
"@vuepress/plugin-blog": "^1.9.3",
"@vuepress/plugin-medium-zoom": "^1.7.1",
"@vuepress/plugin-nprogress": "^1.7.1",
"@vuepress/plugin-pwa": "^1.7.1",
"@vuepress/plugin-search": "^1.7.1",
"dayjs": "^1.8.19",
"remove-markdown": "^0.3.0",
"vue-feather-icons": "^4.21.0",
"vuepress-plugin-smooth-scroll": "^0.0.9"
},
"devDependencies": {
"babel-eslint": "^10.0.3",
"conventional-changelog-cli": "^2.0.1",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.7.0",
"eslint-config-sherry": "0.0.1",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-vue": "^6.0.1",
"husky": "^3.1.0",
"jest": "^24.9.0",
"lint-staged": "^9.5.0",
"sort-package-json": "^1.31.0",
"vuepress": "^1.7.1"
},
"peerDependencies": {
"vuepress": "^1.0.0"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
}
}