-
Notifications
You must be signed in to change notification settings - Fork 45
/
package.json
65 lines (65 loc) · 1.86 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
{
"name": "mm-notes",
"type": "module",
"private": true,
"version": "1.0.0",
"packageManager": "[email protected]",
"description": "Development related notes",
"repository": {
"type": "git",
"url": "git+https://github.com/maomao1996/mm-notes.git"
},
"bugs": {
"url": "https://github.com/maomao1996/mm-notes/issues"
},
"license": "MIT",
"homepage": "https://github.com/maomao1996/mm-notes#readme",
"author": "maomao1996 <[email protected]>",
"scripts": {
"dev": "cross-env NODE_ENV=development vitepress dev docs --port=8732",
"build": "npm run daily-notes && vitepress build docs",
"build:docs": "vitepress build docs",
"daily-notes": "node ./scripts/daily-notes.js",
"update:friend": "node ./scripts/update-friend.js",
"preview": "vitepress preview docs --port 8730",
"lint": "prettier --write .",
"prepare": "husky install"
},
"devDependencies": {
"@femm/prettier": "^1.1.0",
"@femm/tailwind-config": "^1.0.0",
"@femm/verify-commit": "^1.0.1",
"@giscus/vue": "^2.4.0",
"@mdit-vue/shared": "^0.12.1",
"@octokit/rest": "^19.0.13",
"@types/fs-extra": "^11.0.4",
"@types/node": "^20.11.28",
"autoprefixer": "^10.4.18",
"cross-env": "^7.0.3",
"dayjs": "^1.11.10",
"execa": "^9.3.0",
"fs-extra": "^11.2.0",
"husky": "^8.0.3",
"lint-staged": "^13.3.0",
"medium-zoom": "^1.1.0",
"postcss": "^8.4.36",
"prettier": "^2.8.8",
"prompts": "^2.4.2",
"sass": "^1.72.0",
"tailwindcss": "^3.4.1",
"vite-plugin-markdown-preview": "^1.1.1",
"vitepress": "^1.0.1",
"vue": "^3.4.21"
},
"lint-staged": {
"*.{js,ts,css,md,json}": [
"prettier --write"
]
},
"prettier": "@femm/prettier",
"pnpm": {
"patchedDependencies": {
"[email protected]": "patches/[email protected]"
}
}
}