-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 2.01 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
{
"private": true,
"scripts": {
"dev": "next dev",
"dev:tailwind": "concurrently 'next dev' 'npm run tailwind:watch'",
"build": "next build",
"start": "next start",
"lint": "next lint",
"tailwind": "tailwindcss -i styles/globals.css -o styles/dist.css",
"tailwind:watch": "tailwindcss -i styles/globals.css -o styles/dist.css --watch",
"format": "prettier --write \"**/*.{js,ts,tsx,md}\"",
"postinstall": "npm run tailwind"
},
"prettier": {
"arrowParens": "always",
"semi": true,
"trailingComma": "all",
"singleQuote": true
},
"dependencies": {
"@apollo/client": "3.7.1",
"@heroicons/react": "2.0.12",
"@rainbow-me/rainbowkit": "0.8.0",
"@vercel/analytics": "0.1.5",
"@vercel/og": "0.0.21",
"buffer": "6.0.3",
"clsx": "1.2.1",
"concurrently": "7.5.0",
"cross-fetch": "3.1.5",
"encoding": "0.1.13",
"ethers": "5.7.2",
"graphql": "16.6.0",
"imagekit": "4.1.2",
"imagekitio-react": "2.0.0",
"joi": "17.7.0",
"jsonwebtoken": "8.5.1",
"jwt-decode": "3.1.2",
"knex": "2.3.0",
"next": "13.0.7-canary.0",
"next-swagger-doc": "0.3.6",
"pg": "8.8.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-infinite-scroll-component": "6.1.0",
"react-toastify": "9.1.1",
"reactjs-popup": "2.0.5",
"styled-components": "6.0.0-beta.2",
"styled-jsx": "5.1.0",
"swagger-ui-react": "4.15.5",
"use-count-up": "3.0.1",
"use-debounce": "8.0.4",
"wagmi": "0.8.5"
},
"devDependencies": {
"@tailwindcss/line-clamp": "0.4.2",
"@types/body-scroll-lock": "3.1.0",
"@types/jsonwebtoken": "8.5.9",
"@types/node": "18.0.3",
"@types/react": "18.0.15",
"@types/react-dom": "18.0.6",
"@types/swagger-ui-react": "4.11.0",
"autoprefixer": "10.4.13",
"eslint": "8.19.0",
"eslint-config-next": "latest",
"postcss": "8.4.18",
"prettier": "^2.7.1",
"prettier-plugin-tailwindcss": "^0.1.12",
"tailwindcss": "3.2.1",
"typescript": "4.7.4"
}
}