-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
87 lines (87 loc) · 2.64 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
{
"name": "awesome-notes",
"version": "3.19.1",
"packageManager": "[email protected]",
"description": "Personal Learning Notes (TIL)",
"author": "sabertazimi",
"license": "MIT",
"homepage": "https://github.com/sabertazimi/awesome-notes#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/sabertazimi/awesome-notes.git"
},
"bugs": {
"url": "https://github.com/sabertazimi/awesome-notes/issues"
},
"keywords": [
"CS",
"Notes",
"Docusaurus",
"GitBook",
"HTML",
"CSS",
"JavaScript",
"TypeScript",
"React",
"Web",
"TIL"
],
"main": "README.md",
"scripts": {
"build": "docusaurus build",
"clone": "git clone https://$VERCEL_GIT_PROVIDER.com/$VERCEL_GIT_REPO_OWNER/$VERCEL_GIT_REPO_SLUG && rm -fr .git && cp -fr $VERCEL_GIT_REPO_SLUG/.git . && rm -fr $VERCEL_GIT_REPO_SLUG",
"clear": "docusaurus clear",
"dev": "docusaurus start",
"lint": "pnpm lint:notes && pnpm lint:style && pnpm lint:type-check",
"lint:notes": "eslint ./notes && stylelint ./notes/**/*.md && markdownlint ./notes",
"lint:style": "eslint ./src && stylelint ./src/**/*.css",
"lint:type-check": "tsc --noEmit",
"lint:fix": "pnpm lint:notes:fix && pnpm lint:style:fix",
"lint:notes:fix": "eslint ./notes --fix && stylelint ./notes/**/*.md --fix && markdownlint ./notes --fix",
"lint:style:fix": "eslint ./src --fix && stylelint ./src/**/*.css --fix",
"changeset": "commit-and-tag-version --dry-run -s",
"release": "commit-and-tag-version -s",
"serve": "docusaurus serve",
"start": "pnpm dev"
},
"dependencies": {
"@docusaurus/core": "3.7.0",
"@docusaurus/preset-classic": "3.7.0",
"@easyops-cn/docusaurus-search-local": "^0.49.2",
"clsx": "^2.1.1",
"katex": "^0.16.22",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"rehype-katex": "^7.0.1",
"remark-math": "^6.0.0"
},
"devDependencies": {
"@dg-scripts/eslint-config": "^5.21.5",
"@dg-scripts/stylelint-config": "^5.21.5",
"@docusaurus/module-type-aliases": "3.7.0",
"@docusaurus/theme-classic": "^3.7.0",
"@docusaurus/tsconfig": "3.7.0",
"@docusaurus/types": "3.7.0",
"@mdx-js/react": "^3.1.0",
"@types/node": "^22.14.1",
"ci-info": "^4.2.0",
"commit-and-tag-version": "^12.5.1",
"eslint": "^9.25.0",
"markdownlint-cli": "^0.44.0",
"prettier": "^3.5.3",
"stylelint": "^16.18.0",
"typescript": "^5.8.3"
},
"browserslist": {
"production": [
">0.5%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}