-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
82 lines (82 loc) · 2.37 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
{
"name": "rtu-connect-v2",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"prettier:check": "prettier --check \"./{data,src}/**/*.{ts,tsx}\"",
"prettier:write": "prettier --write \"./{data,src}/**/*.{ts,tsx}\"",
"prepare": "husky install",
"generate": "graphql-codegen --config graphql.config.yml"
},
"dependencies": {
"@apollo/client": "^3.7.10",
"@headlessui/react": "^1.7.3",
"@heroicons/react": "^2.0.12",
"@lexical/code": "^0.9.0",
"@lexical/link": "^0.9.0",
"@lexical/list": "^0.9.0",
"@lexical/markdown": "^0.9.0",
"@lexical/react": "^0.9.0",
"@lexical/rich-text": "^0.9.0",
"@lexical/selection": "^0.9.0",
"@lexical/table": "^0.9.0",
"@lexical/utils": "^0.9.0",
"@rainbow-me/rainbowkit": "^0.12.1",
"@vercel/analytics": "^0.1.11",
"@wagmi/chains": "^0.2.11",
"axios": "^1.1.3",
"ethers": "^5.7.2",
"firebase": "^9.17.1",
"formik": "^2.2.9",
"framer-motion": "^8.1.7",
"graphql": "^16.6.0",
"heroicons": "^2.0.16",
"interweave": "^13.0.0",
"interweave-autolink": "^5.1.0",
"lexical": "^0.9.0",
"moment": "^2.29.4",
"nanoid": "^4.0.1",
"next": "12.3.1",
"omit-deep": "^0.3.0",
"plyr-react": "^5.1.2",
"react": "^18.2.0",
"react-dom": "18.2.0",
"react-hot-toast": "^2.4.0",
"react-infinite-scroll-component": "^6.1.0",
"wagmi": "^0.12.2",
"zustand": "^4.1.3"
},
"devDependencies": {
"@graphql-codegen/cli": "^3.2.2",
"@graphql-codegen/fragment-matcher": "^4.0.1",
"@graphql-codegen/typescript": "^3.0.2",
"@graphql-codegen/typescript-graphql-request": "^4.5.9",
"@graphql-codegen/typescript-operations": "^3.0.2",
"@graphql-codegen/typescript-react-apollo": "^3.3.7",
"autoprefixer": "^10.4.13",
"eslint": "8.25.0",
"eslint-config-next": "12.3.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-simple-import-sort": "^8.0.0",
"eslint-plugin-unicorn": "^44.0.2",
"eslint-plugin-unused-imports": "^2.0.0",
"husky": "^8.0.0",
"lint-staged": "^13.0.3",
"postcss": "^8.4.18",
"prettier": "^2.7.1",
"tailwindcss": "^3.2.1"
},
"lint-staged": {
"*.{js,jsx}": [
"prettier --write",
"eslint"
],
"*.json": [
"prettier --write"
]
}
}