-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
122 lines (122 loc) · 4.55 KB
/
package.json
File metadata and controls
122 lines (122 loc) · 4.55 KB
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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
{
"name": "dapp",
"private": true,
"version": "1.0.30",
"type": "module",
"engines": {
"node": ">=21.6.0"
},
"scripts": {
"dev": "vite --port ${VITE_APP_PORT-5173}",
"dev-quiet": "vite --port ${VITE_APP_PORT-5173} --logLevel error",
"build": "tsc -p tsconfig.build.json && vite build",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"preview": "vite build --mode ${VITE_ENVIRONMENT-development} --outDir dist-${VITE_ENVIRONMENT:-development} && vite preview --port ${VITE_APP_PORT-5173} --outDir dist-${VITE_ENVIRONMENT:-development}",
"clean": "rm -rf .turbo && rm -rf node_modules && rm -rf dist",
"postinstall": "node scripts/postinstall.js",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"storybook:visual-tests": "source .env && chromatic --project-token=$STORYBOOK_CHROMATIC_PROJECT_TOKEN",
"env:testnet": "dotenvx run -f .env.testnet",
"env:mainnet": "dotenvx run -f .env.mainnet",
"e2e": "./scripts/e2e.sh",
"e2e:open": "./scripts/e2e-open.sh",
"@smoke": "./scripts/smoke.sh",
"smoke:mainnet": "pnpm env:mainnet -- pnpm @smoke",
"smoke:testnet": "pnpm env:testnet -- pnpm @smoke",
"smoke": "concurrently --group --names 'mainnet,testnet' --prefix-colors 'cyan,green' --kill-others-on-fail --timings --handle-input 'pnpm smoke:mainnet' 'pnpm smoke:testnet'",
"test:unit": "vitest run",
"test": "./scripts/test.sh",
"local-rpc": "./scripts/local-rpc.sh",
"create-test-fixtures": "./scripts/create-test-fixtures.sh"
},
"dependencies": {
"@axis-finance/abis": "0.0.3",
"@axis-finance/auto-signer-provider": "^0.0.1",
"@axis-finance/cloak": "0.0.20",
"@axis-finance/curator-api": "0.0.33",
"@axis-finance/deployments": "0.0.16",
"@axis-finance/env": "0.0.20",
"@axis-finance/sdk": "0.0.43",
"@axis-finance/subgraph-client": "0.0.12",
"@axis-finance/types": "0.0.23",
"@fleek-platform/sdk": "^3.5.1",
"@helia/verified-fetch": "^2.3.1",
"@openzeppelin/merkle-tree": "^1.0.6",
"@rainbow-me/rainbowkit": "^2.0.2",
"@repo/tailwind-config": "workspace:*",
"@repo/ui": "workspace:*",
"@tanstack/react-query": "5.18.1",
"@tanstack/react-query-devtools": "^5.18.1",
"@tanstack/react-table": "^8.11.7",
"@trpc/client": "^10.45.1",
"@uniswap/v3-sdk": "^3.18.1",
"@xyfinance/widget": "^4.6.1",
"ajv": "^8.12.0",
"ajv-formats": "^2.1.1",
"date-fns": "^3.3.1",
"debounce": "^2.1.1",
"ethereum-blockies": "^0.1.1",
"jotai": "^2.7.0",
"lucide-react": "^0.439.0",
"papaparse": "^5.4.1",
"plausible-tracker": "^0.3.9",
"react": "18.3.1",
"react-csv": "^2.2.2",
"react-dom": "^18.2.0",
"react-responsive": "^10.0.0",
"react-router-dom": "^6.21.3",
"react-scroll": "^1.9.0",
"react-use-wizard": "^2.3.0",
"recharts": "^2.12.0",
"viem": "2.17.3",
"vite-plugin-node-polyfills": "^0.17.0",
"vite-tsconfig-paths": "^4.3.1",
"wagmi": "2.5.2"
},
"devDependencies": {
"@axis-finance/eslint-config": "0.0.2",
"@axis-finance/typescript-config": "0.0.2",
"@chromatic-com/storybook": "^1.4.0",
"@dotenvx/dotenvx": "^1.7.0",
"@hookform/devtools": "4.3.1",
"@openapitools/openapi-generator-cli": "^2.9.0",
"@storybook/addon-essentials": "^8.1.1",
"@storybook/addon-interactions": "^8.1.1",
"@storybook/addon-links": "^8.1.1",
"@storybook/blocks": "^8.1.1",
"@storybook/react": "^8.1.1",
"@storybook/react-vite": "^8.1.1",
"@storybook/test": "^8.1.1",
"@tanstack/eslint-plugin-query": "^5.20.1",
"@types/ethereum-blockies": "^0.1.2",
"@types/node": "^20.11.5",
"@types/papaparse": "^5.3.14",
"@types/react": "18.2.48",
"@types/react-csv": "^1.1.10",
"@types/react-dom": "^18.2.18",
"@types/react-scroll": "^1.8.10",
"@typescript-eslint/eslint-plugin": "^6.14.0",
"@typescript-eslint/parser": "6.14.0",
"@vitejs/plugin-react": "^4.2.1",
"angry-purple-tiger": "^1.0.5",
"autoprefixer": "^10.4.17",
"concurrently": "^9.1.2",
"cypress": "^13.13.3",
"eslint": "^8.57.1",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "4.6.0",
"eslint-plugin-react-refresh": "0.4.5",
"eslint-plugin-storybook": "^0.6.15",
"msw": "^2.3.5",
"postcss": "^8.4.33",
"prool": "^0.0.23",
"start-server-and-test": "^2.0.5",
"storybook": "^8.1.1",
"storybook-addon-remix-react-router": "^3.0.0",
"tailwindcss": "^3.4.1",
"typescript": "5.2.2",
"vite": "^5.0.8",
"vitest": "^1.5.0"
}
}