-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
106 lines (106 loc) · 3.68 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
104
105
106
{
"name": "skip-go-app",
"version": "0.1.0",
"private": true,
"scripts": {
"build": "next build",
"chains:update": "git submodule init && git submodule update --remote",
"chains:generate": "tsx ./src/scripts/codegen.ts",
"dev": "next dev",
"dev:https": "next dev --experimental-https",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx}\"",
"lint": "eslint --fix \"**/*.{js,jsx,ts,tsx}\"",
"postinstall": "patch-package && run-s chains:*",
"start": "next start",
"test": "node --experimental-vm-modules --no-warnings ./node_modules/.bin/jest",
"test:e2e": "playwright test transactions.spec.ts --project=chromium",
"test:e2e-1": "playwright test 1nobleUSDCToInjectiveINJ.spec.ts --project=chromium",
"test:e2e-2": "playwright test 2injectiveINJToCosmoshubATOM.spec.ts --project=chromium",
"test:e2e-3": "playwright test 3cosmoshubAtomToNobleUSDC.spec.ts --project=chromium",
"visdeps": "bash ./src/scripts/visdeps.sh"
},
"dependencies": {
"@fontsource/jost": "^5.0.16",
"@graz-sh/types": "^0.0.14",
"@heroicons/react": "^2.1.1",
"@keplr-wallet/types": "^0.12.66",
"@radix-ui/colors": "^3.0.0",
"@radix-ui/react-accordion": "^1.1.2",
"@radix-ui/react-collapsible": "^1.0.3",
"@radix-ui/react-dialog": "^1.0.5",
"@radix-ui/react-scroll-area": "^1.0.5",
"@radix-ui/react-tooltip": "^1.0.7",
"@solana/web3.js": "^1.95.8",
"@tailwindcss/forms": "^0.5.7",
"@tanstack/query-sync-storage-persister": "^5.18.1",
"@tanstack/react-query": "^5.18.1",
"@tanstack/react-query-persist-client": "^5.18.1",
"@types/node": "^20.11.16",
"@types/react": "^18.2.53",
"@types/react-dom": "^18.2.18",
"@vercel/analytics": "^1.1.2",
"@vercel/edge-config": "^0.4.1",
"autoprefixer": "^10.4.17",
"axios": "^1.6.7",
"chain-registry": "latest",
"clsx": "^2.1.0",
"cosmjs-types": "0.8.x",
"date-fns": "^3.3.1",
"dotenv": "^16.4.5",
"download": "^8.0.0",
"match-sorter": "^6.3.3",
"next": "^14.1.0",
"next-seo": "^6.4.0",
"nuqs": "^1.17.4",
"postcss": "^8.4.33",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hot-toast": "^2.4.1",
"react-icons": "^5.1.0",
"tailwind-merge": "^2.2.1",
"tailwindcss": "^3.4.1",
"tailwindcss-animate": "^1.0.7",
"tinykeys": "^2.1.0",
"undici": "^6.6.1",
"viem": "^2.16.4",
"wagmi": "^2.5.7",
"widgetv1": "npm:@skip-go/widget@^2.5.2",
"widgetv2": "npm:@skip-go/[email protected]",
"zod": "^3.22.4",
"zustand": "^4.5.0"
},
"devDependencies": {
"@playwright/test": "^1.41.2",
"@tanstack/eslint-plugin-query": "^5.18.1",
"@testing-library/jest-dom": "^6.4.2",
"@testing-library/react": "^14.2.1",
"@testing-library/user-event": "^14.5.2",
"@types/download": "^8.0.5",
"@types/jest": "^29.5.12",
"@types/testing-library__jest-dom": "^5.14.9",
"@typescript-eslint/eslint-plugin": "^6.20.0",
"@typescript-eslint/parser": "^6.20.0",
"dependency-cruiser": "^16.2.0",
"eslint": "^8.56.0",
"eslint-config-next": "^14.1.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-simple-import-sort": "^10.0.0",
"globby": "^14.0.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"json-schema-to-typescript": "^13.1.2",
"json-schema-to-zod": "^1.2.0",
"msw": "1.x",
"npm-run-all2": "^6.1.2",
"p-map": "^7.0.1",
"patch-package": "^8.0.0",
"prettier": "^3.2.5",
"prettier-plugin-tailwindcss": "^0.5.11",
"resize-observer-polyfill": "^1.5.1",
"ts-jest": "^29.1.2",
"tsx": "^4.7.0",
"typed-query-selector": "^2.11.0",
"typescript": "5.2.x"
}
}