-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
101 lines (101 loc) · 2.98 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
{
"name": "smol",
"version": "1.0.0",
"private": false,
"homepage": "./",
"scripts": {
"dev": "next",
"dev:ts": "tsc --watch",
"start": "tsc && next build && next start",
"build": "tsc && next build",
"prepare": "husky install",
"prettier": "prettier --check \"./**/**/*.{json,js,ts,tsx,scss}\"",
"prettier-format": "prettier --config .prettierrc \"./**/**/*.{json,js,ts,tsx,scss,md}\" --write",
"export": "tsc && next build && next export -o ipfs",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx"
},
"dependencies": {
"@builtbymom/web3": "^0.0.67",
"@gnosis.pm/gp-v2-contracts": "^1.1.2",
"@gnosis.pm/safe-apps-react-sdk": "^4.6.2",
"@headlessui/react": "^1.7.17",
"@popperjs/core": "^2.11.8",
"@radix-ui/react-dialog": "^1.0.5",
"@radix-ui/react-popover": "^1.0.7",
"@radix-ui/react-select": "^2.0.0",
"@radix-ui/react-tooltip": "^1.0.7",
"@rainbow-me/rainbowkit": "^1.1.1",
"@react-hookz/web": "^23.1.0",
"@tailwindcss/forms": "^0.5.6",
"@tailwindcss/typography": "^0.5.10",
"@vercel/analytics": "^1.1.0",
"@wagmi/core": "^1.4.3",
"@yearn-finance/web-lib": "3.0.49",
"axios": "^1.5.1",
"cmdk": "^0.2.0",
"date-fns": "^2.30.0",
"dayjs": "^1.11.10",
"formidable": "^3.5.1",
"framer-motion": "^10.16.4",
"graphql-request": "^6.1.0",
"html2canvas": "^1.4.1",
"lottie-react": "^2.4.0",
"next": "^13.5.4",
"next-pwa": "^5.6.0",
"next-seo": "^6.1.0",
"react": "^18.2.0",
"react-day-picker": "^8.9.1",
"react-dom": "^18.2.0",
"react-dom-confetti": "^0.2.0",
"react-jazzicon": "^1.0.4",
"react-popper": "^2.3.0",
"swr": "^2.2.4",
"tailwindcss": "^3.3.3",
"telegraf": "^4.14.0",
"uuid": "^9.0.1",
"viem": "^1.15.4",
"wagmi": "^1.4.3",
"web3-eth-abi": "^1.10.0"
},
"devDependencies": {
"@commitlint/cli": "^18.4.1",
"@commitlint/config-conventional": "^18.4.0",
"@total-typescript/ts-reset": "^0.5.1",
"@types/node": "^20.9.0",
"@types/nprogress": "^0.2.3",
"@types/react": "^18.2.37",
"@types/react-dom": "^18.2.15",
"@typescript-eslint/eslint-plugin": "^6.10.0",
"@typescript-eslint/parser": "^6.10.0",
"autoprefixer": "^10.4.16",
"babel-loader": "^9.1.3",
"bun-types": "^1.0.11",
"eslint": "^8.53.0",
"eslint-config-next": "^14.0.2",
"eslint-config-prettier": "^9.0.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-brackets": "^0.1.3",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-simple-import-sort": "^10.0.0",
"eslint-plugin-tailwindcss": "^3.13.0",
"eslint-plugin-unused-imports": "^3.0.0",
"husky": "^8.0.3",
"lint-staged": "^15.0.2",
"next-transpile-modules": "^10.0.1",
"postcss": "^8.4.31",
"postcss-import": "^15.1.0",
"postcss-nesting": "^12.0.1",
"prettier": "^3.0.3",
"sass": "^1.69.5",
"sharp": "^0.32.6",
"stylelint": "^15.11.0",
"stylelint-config-standard": "^34.0.0",
"ts-loader": "^9.5.0",
"typescript": "^5.2.2"
},
"overrides": {
"wagmi/connectors": "3.1.10"
}
}