-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
52 lines (52 loc) · 1.51 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
{
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"postbuild": "node ./scripts/build-search.js",
"start": "next start",
"lint": "next lint",
"format": "prettier --write \"**/*.ts\" \"**/*.tsx\" \"**/*.js\"",
"format-check": "prettier --check \"**/*.ts\" \"**/*.tsx\" \"**/*.js\""
},
"dependencies": {
"@algolia/autocomplete-theme-classic": "^1.6.3",
"@docsearch/css": "^3.2.1",
"@headlessui/react": "^0.0.0-insiders.fc7def3",
"@heroicons/react": "^1.0.5",
"@rainbow-me/rainbowkit": "^0.4.1",
"@types/jsonwebtoken": "^8.5.8",
"axios": "^0.27.2",
"classnames": "^2.3.1",
"cookie": "^0.5.0",
"dotenv": "^11.0.0",
"ethers": "^5.6.9",
"jsonwebtoken": "^8.5.1",
"markdown-to-jsx": "^7.1.7",
"next": "latest",
"prettier": "^2.7.1",
"prismjs": "^1.29.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-icons": "^4.3.1",
"react-markdown": "^8.0.3",
"react-notion": "^0.10.0",
"react-vertical-timeline-component": "^3.5.2",
"swr": "^1.3.0",
"uuid": "^8.3.2",
"wagmi": "^0.5.9"
},
"devDependencies": {
"@tailwindcss/forms": "^0.5.0",
"@tailwindcss/line-clamp": "^0.4.0",
"@types/react": "^17.0.37",
"@typescript-eslint/eslint-plugin": "^5.38.1",
"@typescript-eslint/parser": "^5.38.1",
"autoprefixer": "^10.4.12",
"eslint": "^8.24.0",
"eslint-config-next": "12.1.1",
"postcss": "^8.4.12",
"tailwindcss": "^3.0.23",
"typescript": "^4.5.2"
}
}