forked from Nuubs4/EthForAll-Main
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
82 lines (82 loc) · 2.33 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": "eth-for-all",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"lint:eslint": "eslint . --fix --ext ts --ext tsx --ext js",
"lint-staged": "lint-staged",
"typecheck": "tsc --noEmit",
"prepare": "husky install",
"format": "prettier --write ."
},
"dependencies": {
"@arcana/auth": "^1.0.1",
"@arcana/auth-react": "^0.0.3",
"@arcana/auth-wagmi": "^0.0.2",
"@chatscope/chat-ui-kit-react": "^1.10.1",
"@fontsource/poppins": "^4.5.10",
"@fontsource/space-grotesk": "^4.5.13",
"@headlessui/react": "^1.7.10",
"@heroicons/react": "^2.0.15",
"@huddle01/huddle01-client": "^0.0.10",
"@livepeer/react": "^2.1.5",
"@next/font": "13.1.6",
"@portabletext/react": "^2.0.1",
"@pushprotocol/restapi": "0.2.1",
"@pushprotocol/uiweb": "0.2.3",
"@superfluid-finance/sdk-core": "^0.6.1",
"@transak/transak-sdk": "^1.3.0",
"autoprefixer": "^10.4.13",
"axios": "^1.3.2",
"chart.js": "^4.2.1",
"ethers": "^5",
"graphql": "^16.6.0",
"mongoose": "^6.9.2",
"next": "^13.1.6",
"postcss": "^8.4.21",
"react": "^18.2.0",
"react-chartjs-2": "^5.2.0",
"react-countup": "^6.4.1",
"react-dom": "^18.2.0",
"react-drag-drop-files": "^2.3.8",
"react-icons": "^4.7.1",
"react-toastify": "^9.1.1",
"styled-components": "^5.3.6",
"swiper": "^9.0.0",
"tailwindcss": "^3.2.4",
"wagmi": "^0.11.5",
"web3.storage": "^4.4.0"
},
"devDependencies": {
"@types/faker": "5.5.9",
"@types/node": "18.11.18",
"@types/react": "18.0.27",
"@types/react-dom": "18.0.10",
"@typescript-eslint/eslint-plugin": "^5.50.0",
"@typescript-eslint/parser": "^5.50.0",
"eslint": "8.33.0",
"eslint-config-next": "13.1.6",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-simple-import-sort": "^10.0.0",
"faker": "5.5.3",
"husky": "^8.0.3",
"lint-staged": "^13.1.0",
"prettier": "^2.8.3",
"prettier-plugin-tailwindcss": "^0.2.2",
"typescript": "4.9.5"
},
"lint-staged": {
"*.+(js|jsx|ts|tsx)": [
"eslint --fix"
],
"*.+(js|jsx|ts|tsx|json|css|scss|md|mdx)": [
"prettier --write"
]
}
}