forked from iotaledger/iota-wiki
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
101 lines (101 loc) · 3.46 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
{
"name": "iota-wiki",
"version": "0.0.0",
"private": true,
"scripts": {
"docusaurus": "docusaurus",
"start": "yarn docusaurus start",
"start:tutorials": "CONTENT=\"tutorials/**\" yarn start",
"start:iota": "CONTENT=\"*/*/*/documentation,*/*/*,*/*\" yarn start",
"start:shimmer": "CONTENT=\"*/*/*/documentation,*/*/*,*/*\" yarn start --config docusaurus-shimmer.config.js",
"start:next": "CONTENT=\"*/*/*/documentation,*/*/*,*/*\" yarn start --config docusaurus-next.config.js",
"start:all": "CONTENT=\"*/*/*/documentation,*/*/*,*/*\" yarn build && yarn serve",
"build": "yarn build:iota && yarn build:shimmer && yarn build:next",
"build:iota": "docusaurus build",
"build:shimmer": "docusaurus build --config docusaurus-shimmer.config.js --out-dir build/shimmer",
"build:next": "docusaurus build --config docusaurus-next.config.js --out-dir build/next",
"build:all": "CONTENT=\"*/*/*/documentation,*/*/*,*/*\" yarn 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",
"lint": "eslint --cache --fix src",
"format": "prettier --write .",
"format:svg": "svgo ./src/**/*.svg",
"prepare": "husky install"
},
"dependencies": {
"@algolia/client-search": "^4.14.1",
"@docusaurus/core": "^2.1.0",
"@docusaurus/plugin-client-redirects": "^2.1.0",
"@docusaurus/plugin-ideal-image": "^2.1.0",
"@docusaurus/preset-classic": "^2.1.0",
"@iota-wiki/plugin-tutorial": "^1.0.6",
"@mdx-js/react": "^1.6.21",
"@popperjs/core": "^2.11.5",
"@svgr/webpack": "^5.5.0",
"clsx": "^1.2.1",
"docusaurus-plugin-hotjar": "^0.0.2",
"docusaurus-plugin-matomo": "^0.0.5",
"file-loader": "^6.2.0",
"hast-util-is-element": "1.1.0",
"plugin-image-zoom": "flexanalytics/plugin-image-zoom",
"raw-loader": "^4.0.2",
"react": "^17.0.2",
"react-collapsible": "^2.8.4",
"react-dom": "^17.0.2",
"react-image-gallery": "^1.2.7",
"react-player": "^2.9.0",
"react-popper": "^2.3.0",
"react-select": "^5.2.2",
"rehype-katex": "4",
"remark-code-import": "^0.3.0",
"remark-import-partial": "^0.0.2",
"remark-math": "^3.0.1",
"remark-remove-comments": "^0.2.0",
"require-glob": "^4.1.0",
"url-loader": "^4.1.1",
"webpack": "^5.73.0"
},
"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.1.0",
"@tsconfig/docusaurus": "^1.0.6",
"@types/react": "^17.0.0",
"@types/webpack-env": "^1.16.3",
"@typescript-eslint/eslint-plugin": "^5.9.1",
"@typescript-eslint/parser": "^5.9.1",
"eslint": "^8.6.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-react": "^7.26.0",
"eslint-plugin-react-hooks": "^4.2.0",
"husky": ">=6",
"lint-staged": ">=10",
"prettier": "^2.4.1",
"svgo": "^2.8.0",
"typescript": "^4.5.4"
},
"peerDependencies": {
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": "eslint --cache --fix",
"*.{js,jsx,ts,tsx,css,less,md,mdx,json}": "prettier --write",
"*.svg": "svgo"
},
"packageManager": "[email protected]"
}