-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
97 lines (97 loc) · 3.1 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
88
89
90
91
92
93
94
95
96
97
{
"name": "blog",
"version": "3.0.0",
"author": {
"url": "https://github.com/ylc6223",
"email": "[email protected]",
"name": "Jerry Yang"
},
"repository": {
"url": "https://github.com/ylc6223/blog",
"type": "git"
},
"homepage": "https://ylc6223.site",
"license": "MIT",
"scripts": {
"docusaurus": "docusaurus",
"start": "docusaurus start",
"start:en": "docusaurus start --locale en",
"build": "docusaurus build",
"swizzle": "docusaurus swizzle",
"deploy": "docusaurus deploy",
"clear": "docusaurus clear && rimraf changelog && rimraf _dogfooding/_swizzle_theme_tests",
"serve": "docusaurus serve",
"lint": "yarn lint:js && yarn lint:style",
"lint:js": "eslint --fix --report-unused-disable-directives \"**/*.{js,jsx,ts,tsx,mjs}\"",
"lint:style": "stylelint \"**/*.scss\"",
"lint:fix": "eslint src --fix",
"prettier:fix": "npx prettier src data --check --write",
"format": "npm run prettier:fix && npm run lint:fix",
"write-translations": "docusaurus write-translations",
"write-heading-ids": "docusaurus write-heading-ids",
"index": "docker run -it --env-file=.env -e \"CONFIG=$(cat docsearch.json | jq -r tostring)\" algolia/docsearch-scraper",
"prepare": "husky install",
"commit": "git-cz"
},
"dependencies": {
"@cmfcmf/docusaurus-search-local": "^1.1.0",
"@docusaurus/core": "3.1.0",
"@docusaurus/plugin-ideal-image": "3.1.0",
"@docusaurus/plugin-pwa": "3.1.0",
"@docusaurus/preset-classic": "3.1.0",
"@docusaurus/theme-search-algolia": "3.1.0",
"@giscus/react": "^2.3.0",
"@node-rs/jieba": "^1.10.0",
"@popperjs/core": "^2.11.8",
"@vercel/analytics": "^1.1.1",
"dayjs": "^1.11.10",
"docusaurus-plugin-baidu-tongji": "0.0.0-beta.4",
"docusaurus-plugin-image-zoom": "^1.0.0",
"docusaurus-plugin-sass": "^0.2.5",
"framer-motion": "^10.16.4",
"ora": "^7.0.0",
"prism-react-renderer": "^2.3.1",
"raw-loader": "^4.0.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-popper": "^2.3.0",
"sass": "^1.64.1"
},
"devDependencies": {
"@commitlint/cli": "^19.2.0",
"@commitlint/config-conventional": "^19.1.0",
"@docusaurus/eslint-plugin": "3.1.0",
"@docusaurus/module-type-aliases": "3.1.0",
"@docusaurus/tsconfig": "^3.1.0",
"@docusaurus/types": "3.1.0",
"@iconify/react": "^4.1.1",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"commitizen": "^4.3.0",
"cz-git": "^1.9.0",
"eslint": "^8.53.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"prettier": "^3.1.0",
"stylelint": "^15.0.0",
"stylelint-config-prettier-scss": "^1.0.0",
"stylelint-config-standard": "^34.0.0",
"stylelint-config-standard-scss": "^11.0.0",
"typescript": "~5.3.0"
},
"overrides": {
"@cmfcmf/docusaurus-search-local": {
"@docusaurus/core": "^3.1.0"
}
},
"engines": {
"node": ">=18.0"
},
"config": {
"commitizen": {
"path": "node_modules/cz-git"
}
}
}