-
Notifications
You must be signed in to change notification settings - Fork 51
/
package.json
67 lines (67 loc) · 2.27 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
{
"name": "tds-docs",
"version": "0.0.0",
"private": true,
"scripts": {
"docusaurus": "docusaurus",
"start-cn": "docusaurus start cn --port 3888 --host 0.0.0.0",
"start-hk": "docusaurus start hk --port 3999 --host 0.0.0.0",
"build-cn": "docusaurus build cn",
"build-hk": "docusaurus build hk",
"swizzle-cn": "docusaurus swizzle cn",
"swizzle-hk": "docusaurus swizzle hk",
"deploy-cn": "docusaurus deploy cn",
"deploy-hk": "docusaurus deploy hk",
"clear-cn": "docusaurus clear cn",
"clear-hk": "docusaurus clear hk",
"serve-cn": "docusaurus serve cn",
"serve-hk": "docusaurus serve hk",
"write-translations-cn": "docusaurus write-translations cn",
"write-translations-hk": "docusaurus write-translations hk",
"write-heading-ids-cn": "docusaurus write-heading-ids cn",
"write-heading-ids-hk": "docusaurus write-heading-ids hk",
"typecheck": "tsc",
"optimg-cn": "find cn/static/img -name \"*.jpg\" -exec jpegoptim --max=90 {} \\; && find cn/static/img -name \"*.jpeg\" -exec jpegoptim --max=90 {} \\; && find cn/static/img -name \"*.png\" -exec optipng {} \\;",
"optimg-hk": "find hk/static/img -name \"*.jpg\" -exec jpegoptim --max=90 {} \\; && find hk/static/img -name \"*.jpeg\" -exec jpegoptim --max=90 {} \\; && find hk/static/img -name \"*.png\" -exec optipng {} \\;"
},
"dependencies": {
"@docusaurus/core": "2.1.0",
"@docusaurus/preset-classic": "2.1.0",
"@mdx-js/react": "^1.6.22",
"axios": "^0.27.2",
"clsx": "^1.2.1",
"docusaurus-plugin-sass": "^0.2.2",
"mermaid": "^9.1.6",
"path-browserify": "^1.0.1",
"prism-react-renderer": "^1.3.5",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-markdown": "7.1.0",
"sass": "^1.54.9",
"segmentit": "^2.0.3",
"uuid": "^9.0.0"
},
"devDependencies": {
"@docusaurus/module-type-aliases": "2.1.0",
"@tsconfig/docusaurus": "^1.0.5",
"@types/node": "^18.7.16",
"@types/react": "^17.0.49",
"prettier": "2.8.4",
"typescript": "^4.7.4"
},
"browserslist": {
"production": [
">0.5%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"engines": {
"node": "*"
}
}