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 63
/
package.json
88 lines (88 loc) · 2.56 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
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "@vuepress/plugin-blog",
"version": "1.9.4",
"description": "Offical blog plugin for VuePress",
"repository": {
"type": "git",
"url": "ulivz/vuepress-plugin-blog"
},
"license": "MIT",
"author": "ULIVZ <[email protected]>",
"files": [
"lib",
"types"
],
"main": "lib/node/index.js",
"scripts": {
"build": "concurrently \"rimraf lib\" \"npm:build:client\" \"npm:build:node\" \"npm:build:components\"",
"build:client": "tsc -p tsconfig.client.json",
"build:components": "cpx \"src/client/components/**/*\" lib/client/components",
"build:docs": "vuepress build docs --temp docs/.temp",
"build:example": "node examples/launch.js build",
"build:node": "tsc -p tsconfig.node.json",
"dev": "concurrently \"rimraf lib\" \"npm:dev:client\" \"npm:dev:node\" \"nodemon\"",
"dev:client": "tsc -p tsconfig.client.json --watch",
"dev:docs": "vuepress dev docs --temp docs/.temp",
"dev:example": "node examples/launch.js dev",
"dev:node": "tsc -p tsconfig.node.json --watch",
"lint": "eslint src --ext .ts,.vue",
"prepublishOnly": "npm run build && conventional-changelog -p angular -r 2 -i CHANGELOG.md -s"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,ts,vue}": [
"eslint --fix",
"git add"
],
"package.json": [
"sort-package-json",
"git add"
]
},
"nodemonConfig": {
"exec": "yarn build:components",
"ext": "vue",
"watch": [
"src/client/components/"
]
},
"dependencies": {
"@vssue/api-github-v3": "^1.1.2",
"@vssue/vuepress-plugin-vssue": "^1.2.0",
"dayjs": "^1.10.3",
"vuejs-paginate": "^2.1.0",
"vuepress-plugin-disqus": "^0.2.0",
"vuepress-plugin-feed": "^0.1.8",
"vuepress-plugin-mailchimp": "^1.4.1",
"vuepress-plugin-sitemap": "^2.3.1"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^2.11.0",
"@typescript-eslint/parser": "^2.11.0",
"babel-eslint": "^10.0.3",
"concurrently": "^4.1.0",
"conventional-changelog-cli": "^2.0.1",
"cpx": "^1.5.0",
"eslint": "^6.7.2",
"eslint-config-prettier": "^6.7.0",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-vue": "^6.0.1",
"husky": "^3.1.0",
"inquirer": "^6.3.1",
"lint-staged": "^9.5.0",
"nodemon": "^1.18.7",
"prettier": "^1.19.1",
"rimraf": "^3.0.0",
"sort-package-json": "^1.31.0",
"ts-node": "^7.0.1",
"typescript": "3.1.4",
"vuepress": "^1.2.0"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
}
}