-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.51 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
{
"name": "what-if",
"version": "1.0.0",
"private": true,
"description": "Renovamen's notebook.",
"homepage": "https://note.zxh.io",
"bugs": "https://github.com/Renovamen/what-if/issues",
"repository": {
"type": "git",
"url": "https://github.com/Renovamen/what-if"
},
"license": "MIT",
"author": "Renovamen <[email protected]>",
"scripts": {
"dev": "vuepress dev notes . --host 0.0.0.0 --port 4000",
"build": "vuepress build notes . --dest dist",
"lint": "eslint --ext .js,.vue notes/.vuepress",
"lint-fix": "eslint --fix --ext .js,.vue notes/.vuepress",
"preview": "cd dist && http-server"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,vue}": [
"eslint --fix --ext .js,.vue notes/.vuepress"
],
"package.json": [
"sort-package-json"
]
},
"dependencies": {
"@renovamen/vuepress-plugin-katex": "^0.1.8",
"@renovamen/vuepress-plugin-md-plus": "^0.1.8",
"@vuepress/plugin-blog": "1.9.4",
"markdown-it-chain": "^1.3.0",
"oh-vue-icons": "^0.4.7",
"vuepress-plugin-container": "^2.1.5",
"vuepress-plugin-smooth-scroll": "^0.0.10"
},
"devDependencies": {
"babel-eslint": "^10.1.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-vue": "^7.15.1",
"husky": "^4.3.8",
"lint-staged": "^11.1.1",
"prettier": "^2.3.2",
"sort-package-json": "^1.50.0",
"vuepress": "^1.8.2"
}
}