-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
91 lines (91 loc) · 2.78 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
{
"name": "ncn-portal",
"version": "0.1.0",
"private": true,
"type": "module",
"packageManager": "[email protected]",
"scripts": {
"dev": "next dev --turbopack",
"build": "next build",
"postbuild": "pagefind --site .next/server/app --output-path public/_pagefind",
"start": "next start",
"lint": "next lint",
"lint:fix": "next lint --fix",
"format": "prettier --write '**/*.{ts,tsx,js,json,html,css,scss,md}'",
"format:check": "prettier --check '**/*.{ts,tsx,js,json,html,css,scss,md}'"
},
"dependencies": {
"@coral-xyz/anchor": "^0.30.1",
"@radix-ui/react-icons": "^1.3.0",
"@radix-ui/themes": "^3.1.6",
"@solana-program/system": "^0.6.2",
"@solana/react": "^2.0.0",
"@solana/wallet-standard-features": "^1.3.0",
"@solana/web3.js": "^2.0.0",
"@tabler/icons-react": "^3.26.0",
"@tailwindcss/postcss": "^4.0.6",
"@tanstack/react-query": "^5.62.8",
"@vercel/analytics": "^1.3.1",
"@wallet-standard/core": "^1.1.0",
"@wallet-standard/react": "^1.0.0",
"axios": "^1.6.5",
"classnames": "^2.5.1",
"clipboard": "^2.0.11",
"delay": "^6.0.0",
"eventsource-parser": "^2.0.0",
"gray-matter": "^4.0.3",
"jotai": "^2.10.4",
"lodash-es": "^4.17.21",
"next": "^15.1.2",
"nextra": "^4.2.13",
"nextra-theme-docs": "^4.2.11",
"react": "^19.0.0",
"react-contenteditable": "^3.3.7",
"react-dom": "^19.0.0",
"react-error-boundary": "^4.1.2",
"react-hook-form": "^7.49.3",
"react-hot-toast": "^2.4.1",
"react-icons": "^5.0.1",
"react-markdown": "^10.0.0",
"react-syntax-highlighter": "^15.6.1",
"rehype-katex": "^7.0.0",
"rehype-raw": "^7.0.0",
"rehype-stringify": "^10.0.0",
"remark-gfm": "^4.0.0",
"remark-math": "^6.0.0",
"remark-parse": "^11.0.0",
"remark-rehype": "^11.1.0",
"sass": "^1.70.0",
"swr": "^2.2.5",
"uuid": "^10.0.0"
},
"devDependencies": {
"@tailwindcss/typography": "^0.5.14",
"@trivago/prettier-plugin-sort-imports": "^5.2.2",
"@types/lodash-es": "^4.17.11",
"@types/node": "^20.11.5",
"@types/react": "^18.3.4",
"@types/react-dom": "^18.3.0",
"@types/react-syntax-highlighter": "^15.5.13",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^6.20.0",
"@typescript-eslint/parser": "^6.19.0",
"autoprefixer": "^10.4.20",
"eslint": "^8.56.0",
"eslint-config-next": "14.2.14",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-tailwindcss": "^3.14.0",
"pagefind": "^1.3.0",
"postcss": "^8.5.2",
"postcss-import": "^15.1.0",
"prettier": "^3.3.3",
"tailwind-merge": "^2.5.2",
"tailwindcss": "^4.0.6",
"tailwindcss-animate": "^1.0.7",
"typescript": "^5.5.4"
},
"volta": {
"node": "20.18.0",
"yarn": "1.22.19"
}
}