-
Notifications
You must be signed in to change notification settings - Fork 106
/
package.json
90 lines (90 loc) · 2.98 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
{
"name": "book",
"version": "1.0.0",
"private": true,
"description": "サバイバルTypeScript 〜実務で使うなら最低限ここだけはおさえておきたいTypeScript入門〜",
"keywords": [
"typescript"
],
"scripts": {
"build": "NODE_OPTIONS=\"--openssl-legacy-provider --max-old-space-size=8192\" docusaurus build",
"clear": "docusaurus clear",
"deploy": "docusaurus deploy",
"docusaurus": "docusaurus",
"preinstall": "npx only-allow yarn",
"markdownlint": "markdownlint '**/*.md'",
"markdownlint:fix": "yarn markdownlint --fix",
"prepare": "husky install",
"prettier": "prettier '**/*.{js,jsx,ts,tsx,json,json5,css,scss,graphql,gql,html,vue,yaml,md}' --check",
"prettier:fix": "yarn prettier --write",
"serve": "docusaurus serve",
"start": "NODE_OPTIONS=--openssl-legacy-provider docusaurus start",
"swizzle": "docusaurus swizzle",
"test": "jest",
"textlint": "npx textlint 'docs/**/*.md'",
"textlint:fix": "npx textlint --fix 'docs/**/*.md'",
"typecheck": "tsc --noEmit",
"write-heading-ids": "docusaurus write-heading-ids",
"write-translations": "docusaurus write-translations",
"create-gpts-knowledge": "command -v bun >/dev/null 2>&1 && bun gpts/create-knowledge.ts || { echo 'bun is not installed. Please install it following by https://bun.sh/docs/installation' >&2; }"
},
"browserslist": {
"production": [
">0.5%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"dependencies": {
"@docusaurus/core": "2.4.1",
"@docusaurus/preset-classic": "2.4.1",
"@gracefullight/docusaurus-plugin-microsoft-clarity": "^0.1.3",
"@mdx-js/react": "^1.6.22",
"clsx": "^1.2.1",
"docusaurus-preset-shiki-twoslash": "^1.1.41",
"file-loader": "^6.2.0",
"js-base64": "^3.7.2",
"monaco-editor": "^0.31.1",
"pako": "^2.0.4",
"prism-react-renderer": "^1.3.5",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-nl2br": "^1.0.4",
"remark-breaks": "^2.0.2",
"typescript": "5.4.3",
"url-loader": "^4.1.1"
},
"devDependencies": {
"@babel/helper-get-function-arity": "^7.16.7",
"@docusaurus/module-type-aliases": "2.4.1",
"@tsconfig/docusaurus": "2.0.0",
"@types/jest": "^27.4.0",
"@types/pako": "^2.0.0",
"@types/react": "^18.2.14",
"husky": "^7.0.4",
"jest": "^29.7.0",
"lint-staged": "^12.1.5",
"markdownlint-cli": "^0.30.0",
"monaco-editor-webpack-plugin": "^7.0.1",
"next": "^12.1.6",
"prettier": "^2.5.1",
"prettier-plugin-md-nocjsp": "^1.2.0",
"string-snapshot-serializer": "^1.0.1",
"textlint": "^12.1.0",
"textlint-filter-rule-comments": "^1.2.2",
"textlint-rule-prh": "^5.3.0",
"ts-jest": "^29.1.1",
"twoslash-cli": "^1.3.24",
"zod": "^3.20.6"
},
"engines": {
"node": "20.x",
"yarn": "^1.22.17"
},
"packageManager": "yarn@1.22.17"
}