-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
70 lines (70 loc) · 2.09 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
{
"name": "everclub",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite --port 3000",
"start": "wrangler pages dev -- vite --port 3000",
"build": "tsc && vite build",
"preview": "wrangler pages dev -- vite preview",
"deploy": "wrangler pages publish ./dist",
"prepare": "husky install",
"story": "ladle dev",
"gen:abi": "abi-types-generator ./src/app/contract/abi.json --provider=ethers_v5 --output=./src/app/contract --name everclubContract"
},
"lint-staged": {
"*.(html|css|json|js|yaml|md)": "prettier --write",
"*.(ts|tsx)": [
"eslint --fix",
"prettier --write"
]
},
"dependencies": {
"@emotion/react": "^11.10.0",
"@emotion/styled": "^11.10.0",
"@ladle/react": "^2.0.2",
"@mui/icons-material": "^5.8.4",
"@mui/lab": "5.0.0-alpha.96",
"@mui/material": "^5.10.2",
"@mui/x-data-grid": "^5.17.4",
"@tanstack/react-query": "^4.2.3",
"@tanstack/react-query-devtools": "^4.2.3",
"@trivago/prettier-plugin-sort-imports": "^3.3.0",
"axios": "^0.27.2",
"copy-to-clipboard": "^3.3.2",
"ethers": "^5.7.0",
"i18next": "^21.9.1",
"i18next-browser-languagedetector": "^6.1.5",
"i18next-http-backend": "^1.4.1",
"lodash": "^4.17.21",
"notistack": "^2.0.5",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-i18next": "^11.18.5",
"react-router-dom": "^6.3.0",
"react-social-icons": "^5.14.0",
"react-youtube": "^9.0.3",
"usehooks-ts": "^2.6.0",
"wagmi": "^0.6.4"
},
"devDependencies": {
"@types/lodash": "^4.14.184",
"@types/react": "^18.0.17",
"@types/react-dom": "^18.0.6",
"@vitejs/plugin-react": "^2.0.1",
"eslint": "^8.22.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-react-app": "^7.0.1",
"ethereum-abi-types-generator": "^1.3.2",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1",
"sass": "^1.54.9",
"typescript": "^4.6.4",
"vite": "^3.0.7",
"vite-plugin-eslint": "^1.8.1",
"vite-plugin-svgr": "^2.2.1",
"vite-tsconfig-paths": "^3.5.0"
}
}