-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 2.23 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": "social-realms",
"private": true,
"scripts": {
"dev": "next dev -p 3030",
"build": "next build",
"build-debug": "next build --debug",
"start": "next start",
"export": "next export",
"lint": "next lint",
"prisma-migrate-dev": "npx prisma migrate dev --name init",
"prisma-migrate-prod": "npx prisma migrate deploy"
},
"prisma": {
"schema": "src/prisma/schema.prisma"
},
"dependencies": {
"@alch/alchemy-web3": "^1.2.5",
"@headlessui/react": "^1.5.0",
"axios": "^0.26.0",
"clsx": "^1.1.1",
"cookie": "^0.4.2",
"dayjs": "^1.10.8",
"ethers": "^5.5.4",
"flowbite": "^1.3.4",
"jsonwebtoken": "^9.0.0",
"next": "^12.1.0",
"prisma": "^3.10.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-hot-toast": "^2.2.0",
"react-query": "^3.34.16",
"react-spinners": "^0.11.0",
"siwe": "^1.1.2",
"wagmi": "^0.2.18"
},
"devDependencies": {
"@babel/core": "^7.17.5",
"@next/eslint-plugin-next": "^12.1.0",
"@prisma/client": "^3.10.0",
"@tailwindcss/aspect-ratio": "^0.4.0",
"@tailwindcss/typography": "^0.5.2",
"@testing-library/jest-dom": "^5.16.2",
"@testing-library/react": "^12.1.4",
"@types/cookie": "^0.4.1",
"@types/jsonwebtoken": "^8.5.8",
"@types/node": "^17.0.21",
"@types/react": "^17.0.39",
"@types/tailwindcss": "^3.0.9",
"@typescript-eslint/eslint-plugin": "^5.14.0",
"@typescript-eslint/parser": "^5.14.0",
"@welldone-software/why-did-you-render": "^6.2.3",
"autoprefixer": "^10.4.2",
"dotenv": "^16.0.0",
"dotenv-cli": "^5.0.0",
"eslint": "^8.10.0",
"eslint-config-next": "^12.1.0",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^2.5.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jest-dom": "^4.0.1",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.29.3",
"eslint-plugin-react-hooks": "^4.3.0",
"jest": "^27.5.1",
"postcss": "^8.4.8",
"prettier": "^2.5.1",
"prettier-plugin-tailwindcss": "^0.1.8",
"tailwindcss": "^3.0.23",
"tsconfig-paths": "^3.13.0",
"typescript": "^4.6.2"
}
}