-
Notifications
You must be signed in to change notification settings - Fork 45
/
Copy pathpackage.json
41 lines (41 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
{
"name": "mm-notes",
"version": "1.0.0",
"private": true,
"description": "Development related notes",
"scripts": {
"dev": "vuepress dev docs",
"build": "vuepress build docs",
"build:github": "cross-env BUILD_ENV=/mm-notes/ npm run build",
"lint": "prettier --write **/*.{js,ts,scss,md,json}",
"lint:lint-staged": "lint-staged",
"postinstall": "husky install"
},
"lint-staged": {
"*.{js,ts,scss,md,json}": [
"prettier --write"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/maomao1996/mm-notes.git"
},
"author": "maomao1996 <1714487678@qq.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/maomao1996/mm-notes/issues"
},
"homepage": "https://github.com/maomao1996/mm-notes#readme",
"devDependencies": {
"@vuepress/bundler-vite": "^2.0.0-beta.22",
"@vuepress/plugin-google-analytics": "^2.0.0-beta.22",
"@vuepress/plugin-pwa-popup": "^2.0.0-beta.22",
"@vuepress/plugin-search": "^2.0.0-beta.22",
"cross-env": "^7.0.3",
"husky": "^7.0.1",
"lint-staged": "^11.0.1",
"prettier": "^2.3.2",
"vue-scriptx": "^0.2.5",
"vuepress": "^2.0.0-beta.22"
}
}