forked from iotaledger/iota-wiki
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
113 lines (113 loc) · 3.89 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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"name": "@iota-wiki/core",
"version": "1.1.0",
"scripts": {
"build:cli": "yarn ./cli build",
"build:plugins": "yarn ./plugins/tutorial build && yarn ./plugins/docs build",
"build:theme": "yarn ./theme build",
"checkout": "git submodule update --init",
"checkout:remote": "yarn checkout --remote",
"generate:api": "docusaurus gen-api-docs all && ./scripts/gen_sdk_references.sh",
"lint": "eslint --cache --fix .",
"lint:check": "eslint --cache .",
"lint:links": "iota-wiki check",
"lint:md": "yarn iota-wiki lint --fix docs/**/*.{md,mdx}",
"lint:md:check": "yarn iota-wiki lint docs/**/*.{md,mdx}",
"format": "prettier --cache --write .",
"format:check": "prettier --cache --check .",
"format:svg": "svgo ./src/**/*.svg",
"prepare": "yarn build:plugins && yarn build:theme && yarn checkout",
"docusaurus": "docusaurus",
"start": "NODE_OPTIONS='--max-old-space-size=4096' docusaurus start",
"build": "NODE_OPTIONS='--max-old-space-size=4096' docusaurus build",
"swizzle": "docusaurus swizzle",
"deploy": "docusaurus deploy",
"clear": "docusaurus clear",
"serve": "docusaurus serve",
"write-translations": "docusaurus write-translations",
"write-heading-ids": "docusaurus write-heading-ids"
},
"dependencies": {
"@algolia/client-search": "^4.20.0",
"@docusaurus/core": "2.4.1",
"@docusaurus/plugin-client-redirects": "2.4.1",
"@docusaurus/preset-classic": "2.4.1",
"@docusaurus/remark-plugin-npm2yarn": "^2.4.1",
"@docusaurus/theme-common": "2.4.1",
"@iota-wiki/plugin-docs": "workspace:^",
"@iota-wiki/plugin-tutorial": "workspace:^",
"@iota-wiki/theme": "workspace:^",
"@mdx-js/react": "^1.6.21",
"@popperjs/core": "^2.11.5",
"@saucelabs/theme-github-codeblock": "^0.2.3",
"@svgr/webpack": "^5.5.0",
"clsx": "^1.2.1",
"docusaurus-plugin-openapi-docs": "dr-electron/docusaurus-openapi-docs#head=tmp-fix-type&workspace=docusaurus-plugin-openapi-docs",
"docusaurus-theme-openapi-docs": "dr-electron/docusaurus-openapi-docs#head=tmp-fix-type&workspace=docusaurus-theme-openapi-docs",
"file-loader": "^6.2.0",
"flickity": "2.3.0",
"flickity-fade": "^2.0.0",
"globby": "^13.1.4",
"hast-util-is-element": "1.1.0",
"plugin-image-zoom": "flexanalytics/plugin-image-zoom",
"raw-loader": "^4.0.2",
"react": "18.2.0",
"react-collapsible": "^2.8.4",
"react-dom": "18.2.0",
"react-flickity-component": "^3.6.3",
"react-image-gallery": "^1.3.0",
"react-player": "^2.11.2",
"react-popper": "^2.3.0",
"react-select": "^5.7.7",
"rehype-jargon": "3.0.0",
"rehype-katex": "4",
"rehype-lodash-template": "^0.2.1",
"remark-code-import": "^0.4.0",
"remark-import-partial": "^0.0.2",
"remark-math": "^3.0.1",
"remark-remove-comments": "^0.2.0",
"url-loader": "^4.1.1",
"webpack": "^5.81.0"
},
"resolutions": {
"@types/react": "18.2.24",
"@types/react-dom": "18.2.7"
},
"browserslist": {
"production": [
">0.5%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@docusaurus/module-type-aliases": "2.4.1",
"@docusaurus/plugin-google-gtag": "2.4.1",
"@iota-wiki/cli": "workspace:^",
"@tsconfig/docusaurus": "^1.0.6",
"@types/react": "18.2.24",
"@types/react-dom": "18.2.7",
"@types/webpack-env": "^1.18.2",
"@typescript-eslint/eslint-plugin": "^5.9.1",
"@typescript-eslint/parser": "^5.9.1",
"eslint": "^8.48.0",
"eslint-config-prettier": "^8.9.0",
"eslint-plugin-react": "^7.26.0",
"eslint-plugin-react-hooks": "^4.2.0",
"prettier": "^2.8.8",
"svgo": "^2.8.0",
"typescript": "^4.5.4"
},
"packageManager": "[email protected]",
"workspaces": [
"cli",
"plugins/**",
"theme"
],
"files": []
}