-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
52 lines (52 loc) · 1.48 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
{
"name": "web3music-frontend",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint --max-warnings 0",
"postinstall": "cp -r hooks .git/ && npm run codegen",
"codegen": "npm run graphql-gen",
"graphql-gen": "graphql-codegen",
"graphql-watch": "graphql-codegen -w"
},
"dependencies": {
"@apollo/client": "^3.7.15",
"@habx/apollo-multi-endpoint-link": "^2.9.0",
"@rainbow-me/rainbowkit": "^1.0.2",
"@superfluid-finance/sdk-core": "^0.6.6",
"@types/node": "20.3.1",
"@types/react": "18.2.12",
"@types/react-dom": "18.2.5",
"@walletconnect/web3-provider": "^1.8.0",
"autoprefixer": "10.4.14",
"axios": "^1.5.0",
"classnames": "^2.3.2",
"eslint": "8.42.0",
"eslint-config-next": "13.4.5",
"ethers": "5.7.2",
"graphql": "^16.6.0",
"music-metadata-browser": "^2.5.10",
"next": "^13.4.6",
"next-themes": "^0.2.1",
"nft.storage": "^7.1.0",
"postcss": "8.4.24",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-hook-form": "^7.44.3",
"rxjs": "^7.8.1",
"styled-components": "^6.0.0-rc.3",
"tailwindcss": "3.3.2",
"typescript": "5.1.3",
"viem": "^1.0.7",
"wagmi": "^1.2.0"
},
"devDependencies": {
"@graphql-codegen/cli": "^4.0.1",
"@graphql-codegen/client-preset": "^4.0.0",
"@types/styled-components": "^5.1.26",
"@typescript-eslint/eslint-plugin": "^5.59.11"
}
}