-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
86 lines (86 loc) · 2.54 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
{
"name": "tangle-docs",
"version": "2.0.0",
"private": true,
"description": "Tangle Network Documentation",
"type": "module",
"scripts": {
"dev": "next",
"start": "next start",
"build": "next build && yarn build:sitemap",
"build:sitemap": "next-sitemap --config next-sitemap.config.js",
"export": "next export",
"lint": "next lint && yarn format",
"schema": "turbo-gen ./public/schema.json",
"format": "prettier --write \"{components,pages}/**/*.{mdx,ts,js,jsx,tsx,json}\" ",
"format:check": "prettier --check \"{components,pages}/**/*.{mdx,ts,js,jsx,tsx,json}\" "
},
"author": "Tangle Foundation",
"license": "MPL-2.0",
"dependencies": {
"@next/third-parties": "^14.2.5",
"@polkadot/util": "^12.6.2",
"@polkadot/util-crypto": "^12.6.2",
"@radix-ui/react-slot": "^1.0.2",
"@radix-ui/react-switch": "^1.0.3",
"@radix-ui/react-tabs": "^1.1.3",
"@radix-ui/react-tooltip": "^1.0.7",
"@sentry/nextjs": "^7.27.0",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"lucide-react": "^0.378.0",
"next": "^14.2.5",
"next-sitemap": "^4.2.3",
"nextra": "^3.3.1",
"nextra-theme-docs": "^3.3.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-icons": "^4.12.0",
"react-lite-youtube-embed": "^2.4.0",
"remark-math": "4.0.0",
"sharp": "^0.31.3",
"swr": "1.3.0",
"tailwind-merge": "^2.3.0",
"zod": "^3.24.2"
},
"devDependencies": {
"@next/bundle-analyzer": "^15.2.3",
"@types/node": "^20.6.3",
"@types/react": "18.2.72",
"@typescript-eslint/eslint-plugin": "^5.21.0",
"@typescript-eslint/parser": "^5.21.0",
"autoprefixer": "10.4.13",
"csstype": "3.1.1",
"eslint": "^8.57.0",
"eslint-config-next": "^14.2.5",
"eslint-config-prettier": "8.5.0",
"gray-matter": "^4.0.3",
"postcss": "^8.5.3",
"prettier": "3.2.5",
"shiki": "^3.2.1",
"tailwindcss": "^3.4.3",
"tailwindcss-animate": "^1.0.7",
"typescript": "4.9.4"
},
"prettier": {
"embeddedLanguageFormatting": "off",
"htmlWhitespaceSensitivity": "strict",
"overrides": [
{
"files": "*.mdx",
"options": {
"parser": "mdx",
"plugins": [
"prettier/parser-babel"
]
}
}
]
},
"engines": {
"npm": "please-use-yarn",
"yarn": "^4.7.0",
"node": "22.x.x"
},
"packageManager": "[email protected]+sha512.5a0afa1d4c1d844b3447ee3319633797bcd6385d9a44be07993ae52ff4facabccafb4af5dcd1c2f9a94ac113e5e9ff56f6130431905884414229e284e37bb7c9"
}