-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 2.06 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
{
"name": "olas-site",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"postbuild": "next-sitemap",
"start": "next start",
"lint": "next lint",
"lint:fix": "eslint --fix \"./**/*.{js,jsx}\""
},
"dependencies": {
"@fontsource/inter": "^5.0.17",
"@octokit/core": "^6.1.2",
"@radix-ui/react-collapsible": "^1.0.3",
"@radix-ui/react-dialog": "^1.0.5",
"@radix-ui/react-icons": "^1.3.0",
"@radix-ui/react-navigation-menu": "^1.1.4",
"@radix-ui/react-slot": "^1.0.2",
"@radix-ui/react-tooltip": "^1.1.2",
"autoprefixer": "10.4.14",
"chart.js": "^4.4.0",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.0",
"dayjs": "^1.11.10",
"graphql": "^16.9.0",
"graphql-request": "^7.1.0",
"lodash": "^4.17.21",
"lucide-react": "^0.414.0",
"next": "13.4.6",
"next-plausible": "^3.12.4",
"next-sitemap": "^4.2.3",
"postcss": "8.4.24",
"prop-types": "^15.8.1",
"qs": "^6.11.2",
"react": "18.2.0",
"react-chartjs-2": "^5.2.0",
"react-dom": "18.2.0",
"react-markdown": "^9.0.1",
"rehype-raw": "^6.1.1",
"remark-gfm": "^3.0.1",
"swr": "^2.2.4",
"tailwind-merge": "^2.2.1",
"tailwindcss": "3.3.2",
"tailwindcss-animate": "^1.0.7",
"web3": "^4.2.1",
"web3-types": "^1.3.0"
},
"devDependencies": {
"@babel/core": "^7.23.9",
"@babel/eslint-parser": "^7.23.9",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/preset-env": "^7.23.9",
"@babel/preset-react": "^7.23.3",
"@next/eslint-plugin-next": "^14.2.13",
"babel-plugin-module-resolver": "^5.0.0",
"eslint": "^8.57.0",
"eslint-config-next": "^14.1.3",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"prettier": "^3.3.3"
},
"babel": {
"presets": [
"@babel/preset-env",
"@babel/preset-react"
],
"plugins": [
"@babel/plugin-proposal-class-properties"
]
}
}