-
Notifications
You must be signed in to change notification settings - Fork 33
/
package.json
89 lines (89 loc) · 2.6 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
{
"name": "solana-com",
"description": "The solana.com website",
"version": "3.0.0",
"author": "Solana Maintainers",
"repository": {
"type": "git",
"url": "https://github.com/solana-foundation/solana-com"
},
"dependencies": {
"@builder.io/react": "^7.0.1",
"@docsearch/react": "^3.6.2",
"@mdx-js/react": "^3.1.0",
"@radix-ui/react-accordion": "^1.2.1",
"@radix-ui/react-tabs": "^1.1.1",
"@shikijs/transformers": "^1.22.0",
"@sindresorhus/slugify": "^2.2.1",
"@solana-foundation/solana-lib": "^2.39.0",
"@typeform/embed": "^5.1.0",
"bootstrap": "^5.3.3",
"cheerio": "^1.0.0",
"classnames": "^2.5.1",
"date-fns": "^4.1.0",
"date-fns-tz": "^3.2.0",
"feed": "^4.2.2",
"gray-matter": "^4.0.3",
"i18next": "^23.16.2",
"lodash": "^4.17.21",
"next": "^15.1.0",
"next-i18next": "^15.3.1",
"next-mdx-remote": "^5.0.0",
"next-seo": "^6.6.0",
"node-fetch-cache": "^5.0.2",
"postcss-flexbugs-fixes": "^5.0.2",
"react": "^19.0.0",
"react-bootstrap": "^2.10.5",
"react-countup": "^6.5.3",
"react-dom": "^19.0.0",
"react-feather": "^2.0.10",
"react-i18next": "^15.1.0",
"react-intersection-observer": "^9.13.1",
"react-markdown": "^9.0.1",
"react-player": "^2.16.0",
"react-share": "^5.1.0",
"react-slick": "^0.30.2",
"rehype-pretty-code": "^0.14.0",
"rehype-raw": "^7.0.0",
"remark-gfm": "^4.0.0",
"sass": "^1.80.3",
"sharp": "^0.33.5",
"shiki": "^1.22.0",
"slick-carousel": "^1.8.1",
"styled-components": "^6.1.13",
"swr": "^2.2.5",
"tinyduration": "^3.3.1",
"yup": "^1.4.0"
},
"devDependencies": {
"@babel/core": "^7.25.9",
"@fullhuman/postcss-purgecss": "^6.0.0",
"@next/bundle-analyzer": "15.0.1",
"@svgr/webpack": "^8.1.0",
"@types/node": "^22.7.9",
"@types/styled-components": "^5.1.34",
"babel-loader": "^9.2.1",
"eslint": "^9.13.0",
"eslint-config-next": "15.0.1",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-hooks": "^5.0.0",
"husky": "^9.1.6",
"next-sitemap": "^4.2.3",
"postcss": "^8.4.47",
"postcss-preset-env": "^10.0.7",
"prettier": "^3.3.3",
"typescript": "^5.6.3"
},
"scripts": {
"build": "next build",
"dev": "next",
"start": "next start",
"format:check": "prettier --check \"**/*.{js,jsx,ts,tsx,json,md,scss}\"",
"format:all": "prettier --write \"**/*.{js,jsx,ts,tsx,json,md,scss}\"",
"lint": "next lint",
"lint:fix": "next lint --fix",
"postbuild": "next-sitemap",
"prepare": "husky"
}
}