-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
87 lines (87 loc) · 2.82 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": "blog",
"version": "3.0.0",
"author": {
"url": "https://github.com/disnox",
"email": "hi@disnox.cn",
"name": "disnox"
},
"repository": {
"url": "https://github.com/disnox/blog",
"type": "git"
},
"homepage": "https://disnox.top",
"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"
},
"dependencies": {
"@docusaurus/core": "3.0.0-alpha.0",
"@docusaurus/plugin-ideal-image": "3.0.0-alpha.0",
"@docusaurus/plugin-pwa": "3.0.0-alpha.0",
"@docusaurus/preset-classic": "3.0.0-alpha.0",
"@docusaurus/theme-search-algolia": "3.0.0-alpha.0",
"@giscus/react": "^2.3.0",
"@popperjs/core": "^2.11.8",
"dayjs": "^1.11.9",
"docusaurus-plugin-image-zoom": "^0.1.4",
"docusaurus-plugin-sass": "^0.2.5",
"framer-motion": "^10.13.1",
"hast-util-is-element": "1.1.0",
"loadsh": "^0.0.4",
"ora": "^5.4.1",
"raw-loader": "^4.0.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-popper": "^2.3.0",
"rehype-katex": "6",
"remark-math": "5",
"sass": "^1.64.1"
},
"devDependencies": {
"@docusaurus/eslint-plugin": "3.0.0-alpha.0",
"@docusaurus/module-type-aliases": "3.0.0-alpha.0",
"@iconify/react": "^4.1.1",
"@tsconfig/docusaurus": "^1.0.7",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"eslint": "^8.45.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"prettier": "^2.8.8",
"stylelint": "^14.16.1",
"stylelint-config-prettier": "^9.0.5",
"stylelint-config-prettier-scss": "^0.0.1",
"stylelint-config-standard": "^26.0.0",
"stylelint-config-standard-scss": "^5.0.0",
"typescript": "^4.9.5"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}