-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
103 lines (103 loc) · 3.13 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
99
100
101
102
103
{
"name": "wega-platform",
"private": true,
"version": "0.0.0",
"type": "module",
"babelMacros": {
"twin": {
"preset": "styled-components"
}
},
"scripts": {
"app": "export GSAP_TOKEN=$(grep 'GSAP_TOKEN=' .env | cut -d'=' -f2) && vite --mode",
"export:env": "export GSAP_TOKEN=$(grep 'GSAP_TOKEN=' .env | cut -d'=' -f2)",
"build": "tsc && vite build",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"lint:fix": "eslint \"src/**/*.{ts,tsx}\" --fix",
"prettier": "prettier --check **/*.{css,scss,ts,tsx}",
"prettier:fix": "prettier --write **/*.{css,scss,ts,tsx}",
"format": "prettier --write **/*.{css,scss,ts,tsx} --config ./.prettierrc",
"preview": "vite preview"
},
"dependencies": {
"@emotion/react": "^11.11.1",
"@hookform/error-message": "^2.0.1",
"@hookform/resolvers": "^3.2.0",
"@joi/date": "^2.1.0",
"@jridgewell/sourcemap-codec": "^1.4.15",
"@rainbow-me/rainbowkit": "^1.0.8",
"@reduxjs/toolkit": "^1.9.5",
"@types/lodash": "^4.14.197",
"@types/react-copy-to-clipboard": "^5.0.4",
"@uidotdev/usehooks": "^2.1.0",
"axios": "^1.4.0",
"ethers": "^6.8.1",
"firebase": "^10.3.1",
"gsap": "npm:@gsap/shockingly@^3.12.3",
"joi": "^17.9.2",
"path": "^0.12.7",
"react": "^18.2.0",
"react-awesome-reveal": "^4.2.7",
"react-blockies": "^1.4.1",
"react-copy-to-clipboard": "^5.1.0",
"react-dom": "^18.2.0",
"react-helmet-async": "^1.3.0",
"react-hook-form": "^7.45.4",
"react-hot-toast": "^2.4.1",
"react-intl": "^6.4.4",
"react-redux": "^8.1.2",
"react-router-dom": "^6.14.2",
"react-use": "^17.4.0",
"react-use-scroll-direction": "^0.1.0",
"usehooks-ts": "^2.9.1",
"viem": "^1.7.0",
"wagmi": "^1.3.10"
},
"devDependencies": {
"@types/react": "^18.2.15",
"@types/react-blockies": "^1.4.1",
"@types/react-dom": "^18.2.7",
"@typescript-eslint/eslint-plugin": "^6.3.0",
"@typescript-eslint/parser": "^6.3.0",
"@vitejs/plugin-react": "^4.2.1",
"@wagmi/cli": "^1.3.0",
"autoprefixer": "^10.4.14",
"babel-plugin-macros": "^3.1.0",
"babel-plugin-styled-components": "^2.1.4",
"eslint": "^8.46.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.28.0",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-react": "^7.33.1",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.3",
"hardhat": "^2.17.1",
"husky": "^8.0.3",
"lodash": "^4.17.21",
"polished": "^4.2.2",
"postcss": "^8.4.27",
"prettier": "^3.0.1",
"styled-components": "^6.0.7",
"tailwindcss": "^3.3.3",
"tailwindcss-cli": "^0.1.2",
"twin.macro": "^3.4.0",
"typescript": "^5.1.6",
"vite": "^5.0.6",
"vite-plugin-mkcert": "^1.17.1"
},
"browserslist": {
"production": [
">0.2%",
"not ie <= 99",
"not android <= 4.4.4",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}