-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
95 lines (95 loc) · 3.25 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
{
"name": "chatweb3-frontend",
"version": "0.2.1",
"private": true,
"scripts": {
"dev": "next dev",
"devBackend": "NEXT_PUBLIC_ENV_TAG=dev next dev",
"prodBackend": "NEXT_PUBLIC_ENV_TAG=prod next dev",
"localBackend": "NEXT_PUBLIC_ENV_TAG=local next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"checkFormat": "yarn prettier --check .",
"format": "yarn prettier --write .",
"mint": "yarn dlx ts-node --compilerOptions '{\"esModuleInterop\": true, \"module\": \"commonjs\"}' ./scripts/mint.ts",
"createFork": "yarn dlx ts-node --compilerOptions '{\"esModuleInterop\": true, \"module\": \"commonjs\"}' ./scripts/createFork.ts",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build -o ./.storybook/build -s ./src/public",
"serve-storybook": "serve ./.storybook/build",
"test-storybook-deployment": "test-storybook --url https://cacti-storybook.netlify.com",
"test-storybook": "test-storybook"
},
"dependencies": {
"@arbitrum/sdk": "^3.1.6",
"@center-inc/react": "^1.1.13",
"@headlessui/react": "^1.7.15",
"@heroicons/react": "^2.0.14",
"@hop-protocol/sdk": "^0.0.1-beta.535",
"@liquity/lib-base": "^3.0.0",
"@liquity/lib-ethers": "^3.4.0",
"@next/font": "13.1.2",
"@rainbow-me/rainbowkit": "^0.12.0",
"@types/node": "18.11.18",
"@types/react": "18.0.27",
"@types/react-dom": "18.0.10",
"@uniswap/sdk-core": "<=4.0.3 || >4.0.6",
"@uniswap/smart-order-router": "^3.11.0",
"@uniswap/v3-periphery": "^1.4.3",
"copy-to-clipboard": "^3.3.3",
"date-fns": "^2.30.0",
"eslint": "8.32.0",
"eslint-config-next": "13.1.2",
"ethers": "^5.7.2",
"graphql-request": "^6.1.0",
"json-bigint": "^1.0.0",
"next": "13.1.2",
"next-auth": "^4.22.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-element-to-jsx-string": "^15.0.0",
"react-error-boundary": "^4.0.10",
"react-hotkeys-hook": "^4.4.0",
"react-jazzicon": "^1.0.4",
"react-loading-skeleton": "^3.2.0",
"react-markdown": "^8.0.7",
"react-query": "^3.39.3",
"react-textarea-autosize": "^8.4.1",
"react-toastify": "^9.1.2",
"react-use-websocket": "^4.3.1",
"siwe": "^2.1.4",
"swr": "^2.0.4",
"typescript": "^5.2.2",
"viem": "^1.9.3",
"wagmi": "^0.12.0",
"zksync-web3": "^0.14.3"
},
"devDependencies": {
"@storybook/addon-essentials": "^7.0.12",
"@storybook/addon-interactions": "^7.0.12",
"@storybook/addon-links": "^7.0.12",
"@storybook/addon-mdx-gfm": "^7.0.12",
"@storybook/addon-styling": "^1.0.8",
"@storybook/blocks": "^7.0.12",
"@storybook/nextjs": "^7.0.12",
"@storybook/react": "^7.0.12",
"@storybook/test-runner": "^0.10.0",
"@storybook/testing-library": "^0.1.0",
"@trivago/prettier-plugin-sort-imports": "^4.0.0",
"autoprefixer": "^10.4.14",
"axios": "^1.3.4",
"dotenv": "^16.0.3",
"eslint-plugin-storybook": "^0.6.12",
"postcss": "^8.4.23",
"prettier": "^2.8.3",
"prettier-plugin-tailwindcss": "^0.2.1",
"storybook": "^7.0.12",
"storybook-addon-designs": "beta",
"tailwind-styled-components": "^2.2.0",
"tailwindcss": "^3.2.4"
},
"volta": {
"node": "18.12.1",
"yarn": "3.3.1"
}
}