forked from sablier-labs/docs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
98 lines (98 loc) · 2.93 KB
/
package.json
File metadata and controls
98 lines (98 loc) · 2.93 KB
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
{
"name": "@poolshark/documentation",
"description": "Documentation and guides for Poolshark",
"author": {
"name": "Poolshark Labs Ltd",
"url": "https://poolshark.fi"
},
"browserslist": {
"production": [
">0.5%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"bugs": {
"url": "https://github.com/poolshark-protocol/documentation/issues"
},
"dependencies": {
"@algolia/client-search": "^4.18.0",
"@docusaurus/core": "^2.4.1",
"@docusaurus/plugin-client-redirects": "^2.4.1",
"@docusaurus/preset-classic": "^2.4.1",
"@docusaurus/theme-classic": "^2.4.1",
"@docusaurus/theme-mermaid": "^2.4.1",
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@heroicons/react": "^2.0.18",
"@mdx-js/react": "1.x",
"clsx": "^1.2.1",
"docusaurus-theme-github-codeblock": "^1.1.4",
"function-plot": "^1.23.3",
"hast-util-is-element": "1.1.0",
"prism-react-renderer": "^1.3.5",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rehype-katex": "5",
"remark-math": "3"
},
"devDependencies": {
"@docusaurus/eslint-plugin": "^2.4.1",
"@docusaurus/module-type-aliases": "^2.4.1",
"@docusaurus/types": "^2.4.1",
"@trivago/prettier-plugin-sort-imports": "^4.1.1",
"@tsconfig/docusaurus": "^2.0.0",
"@types/node": "^20.4.0",
"@typescript-eslint/eslint-plugin": "^5.61.0",
"@typescript-eslint/parser": "^5.61.0",
"eslint": "^8.44.0",
"eslint-plugin-mdx": "^2.1.0",
"eslint-plugin-react": "^7.32.2",
"prettier": "^3.0.0",
"typescript": "^5.1.6",
"vercel": "^31.2.2"
},
"engines": {
"node": ">=16.14"
},
"homepage": "https://docs.poolshark.fi",
"keywords": [
"asset-streaming",
"blockchain",
"cryptoassets",
"ethereum",
"money-streaming",
"real-time-finance",
"sablier",
"sablier-v2",
"smart-contracts",
"solidity",
"token-streaming"
],
"private": true,
"repository": "github:poolshark-protocol/documentation",
"scripts": {
"build": "docusaurus build",
"check": "pnpm prettier:check && pnpm lint:fix",
"clear": "docusaurus clear",
"deploy": "docusaurus deploy",
"docusaurus": "docusaurus",
"fix": "pnpm prettier:write && pnpm lint:fix",
"lint:check": "pnpm eslint . --ext md,mdx,ts,tsx",
"lint:fix": "pnpm eslint . --ext md,mdx,ts,tsx --fix",
"prettier:check": "prettier --check \"**/*.{json,md,mdx,ts,tsx,yml}\"",
"prettier:write": "prettier --write \"**/*.{json,md,mdx,ts,tsx,yml}\"",
"serve": "docusaurus serve",
"start": "docusaurus start",
"submodule-reset": "git submodule deinit --all -f && git submodule update --init --recursive",
"swizzle": "docusaurus swizzle",
"vercel-build": "docusaurus build",
"typecheck": "tsc",
"write-heading-ids": "docusaurus write-heading-ids"
}
}