-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.23 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.23 KB
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
{
"packageManager": "pnpm@10.12.1",
"name": "note",
"version": "1.0.0",
"description": "just a note",
"homepage": "https://bee1an.github.io/note/",
"scripts": {
"prepare": "husky",
"dev": "vitepress dev",
"build": "vitepress build",
"build:netlify": "vitepress build --base /",
"preview": "vitepress preview",
"prettier": "prettier . --write",
"typecheck": "tsc --noEmit"
},
"keywords": [
"note"
],
"author": "bee1an",
"license": "ISC",
"dependencies": {
"cors": "^2.8.5",
"express": "^5.1.0",
"jsonwebtoken": "^9.0.2",
"ws": "^8.18.3"
},
"devDependencies": {
"@commitlint/cli": "19.8.0",
"@commitlint/config-conventional": "19.8.0",
"@types/cors": "^2.8.19",
"@types/express": "^5.0.3",
"@types/jsonwebtoken": "^9.0.10",
"@types/node": "^24.0.10",
"@types/ws": "^8.18.1",
"cz-git": "1.11.1",
"husky": "9.1.7",
"lint-staged": "15.5.0",
"markdown-it-mathjax3": "^4.3.2",
"prettier": "3.5.3",
"tsx": "4.19.3",
"typescript": "5.8.3",
"vitepress": "1.6.3"
},
"lint-staged": {
"*.{js,ts,tsx}": [
"prettier --write"
],
"*.vue": [
"prettier --parser=vue --write"
],
"*.css": [
"prettier --write"
],
"*.md": [
"prettier --write --parser markdown --prose-wrap never"
]
}
}