-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
98 lines (98 loc) · 2.94 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "wizardex",
"version": "1.0.0",
"license": "MIT",
"private": false,
"type": "module",
"scripts": {
"build": "next build",
"check:format": "prettier --write --list-different ./",
"check:lint": "eslint ./",
"check:lint:default": "eslint 'src/**/*.{ts,tsx}'",
"check:security": "snyk test & snyk code test",
"check:style": "npm run check:format && npm run check:lint && npm run check:types",
"check:types": "tsc --noEmit",
"dev": "next dev",
"husky:install": "husky install",
"lint": "next lint",
"prebuild": "ts-node --esm ./src/scripts/pre-build.ts",
"start": "next start",
"export": "next export",
"wagmi:generate": "wagmi generate",
"wagmi:init": "wagmi init"
},
"dependencies": {
"@emotion/cache": "^11.10.8",
"@emotion/react": "^11.10.8",
"@emotion/server": "^11.10.0",
"@emotion/styled": "^11.10.8",
"@hookform/resolvers": "^3.1.0",
"@mui/icons-material": "^5.11.16",
"@mui/lab": "5.0.0-alpha.129",
"@mui/material": "^5.12.3",
"@next/env": "13.3.4",
"@popperjs/core": "^2.11.7",
"@rainbow-me/rainbowkit": "^0.12.12",
"@svgr/webpack": "^7.0.0",
"@tanstack/react-query": "^4.29.5",
"@tanstack/react-query-devtools": "^4.29.6",
"@types/node": "18.16.3",
"@types/react": "18.2.0",
"@types/react-dom": "18.2.1",
"@wagmi/core": "^0.10.10",
"abitype": "^0.8.2",
"cryptocurrency-icons": "^0.18.1",
"csstype": "^3.1.2",
"date-fns": "^2.30.0",
"eslint-config-next": "13.3.4",
"eslint-plugin-jsx-a11y": "^6.7.1",
"ethers": "5.7.2",
"include-media": "^2.0.0",
"lodash": "^4.17.21",
"next": "13.3.4",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-hook-form": "^7.43.9",
"react-toastify": "^9.1.2",
"react-ts-tradingview-widgets": "^1.0.14",
"recharts": "^2.5.0",
"sass": "^1.62.1",
"sharp": "^0.32.1",
"typescript": "^5.0.4",
"wagmi": "^0.12.12",
"yup": "^1.1.1",
"zustand": "^4.3.7"
},
"devDependencies": {
"@babel/core": "^7.21.8",
"@babel/eslint-parser": "^7.21.8",
"@cspell/eslint-plugin": "^6.30.2",
"@rushstack/eslint-patch": "^1.2.0",
"@types/confusing-browser-globals": "^1.0.0",
"@types/jest": "^29.5.0",
"@typescript-eslint/eslint-plugin": "^5.56.0",
"@typescript-eslint/parser": "^5.56.0",
"@wagmi/cli": "^0.1.14",
"confusing-browser-globals": "^1.0.11",
"eslint": "^8.36.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-flowtype": "^8.0.3",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-sonarjs": "^0.19.0",
"eslint-plugin-testing-library": "^5.10.2",
"husky": "^8.0.3",
"jest": "^29.5.0",
"lint-staged": "^13.2.0",
"module-alias": "^2.2.2",
"prettier": "2.8.6",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.1.2",
"tslib": "^2.5.0"
},
"lint-staged": {
"*.{ts,tsx}": [
"prettier --write --list-different",
"eslint --fix"
]
}
}