-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
82 lines (82 loc) · 2.54 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
{
"name": "dapp-inter",
"private": true,
"version": "0.0.1",
"type": "module",
"scripts": {
"dev": "vite",
"build": "export NODE_OPTIONS='--max-old-space-size=8192' && tsc && vite build",
"preview": "vite preview",
"lint": "eslint . && prettier --check .",
"lint:fix": "eslint . --fix && prettier --write .",
"test": "vitest",
"coverage": "vitest run --coverage",
"postinstall": "patch-package",
"test:e2e": "SKIP_EXTENSION_SETUP=true EXTENSION=keplr synpress run --configFile=test/e2e/synpress.config.cjs"
},
"dependencies": {
"@agoric/casting": "^0.4.3-u13.0",
"@agoric/cosmic-proto": "^0.3.0",
"@agoric/ertp": "^0.16.2",
"@agoric/inter-protocol": "^0.16.1",
"@agoric/rpc": "^0.9.0",
"@agoric/smart-wallet": "^0.5.3",
"@agoric/ui-components": "^0.9.0",
"@agoric/wallet": "^0.18.3",
"@agoric/web-components": "^0.15.0",
"@agoric/zoe": "^0.26.2",
"@endo/eventual-send": "^1.0.1",
"@endo/init": "^1.0.1",
"@endo/marshal": "^0.8.9",
"@headlessui/react": "^1.6.6",
"clsx": "^1.2.1",
"framer-motion": "^7.2.1",
"jotai": "^1.8.0",
"jotai-zustand": "^0.1.0",
"patch-package": "^7.0.0",
"postinstall-postinstall": "^2.1.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-icons": "^4.4.0",
"react-loader-spinner": "^5.2.0",
"react-router-dom": "^6.4.5",
"react-toastify": "^9.1.1",
"react-view-slider": "^4.5.0",
"ses": "^1.3.0",
"zustand": "^4.1.5"
},
"devDependencies": {
"@agoric/synpress": "^3.8.3",
"@cosmjs/encoding": "^0.32.2",
"@keplr-wallet/types": "^0.12.55",
"@leapwallet/elements": "^0.12.1",
"@types/node": "^18.7.13",
"@types/react": "^18.0.17",
"@types/react-dom": "^18.0.6",
"@typescript-eslint/eslint-plugin": "^7.2.0",
"@typescript-eslint/parser": "^7.2.0",
"@vitejs/plugin-react": "^4.0.0",
"@vitest/coverage-c8": "^0.25.3",
"autoprefixer": "^10.4.8",
"buffer": "^6.0.3",
"eslint": "^8.57.0",
"eslint-plugin-cypress": "^2.15.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-react": "^7.30.1",
"eslint-plugin-react-hooks": "^4.6.0",
"happy-dom": "^9.20.3",
"postcss": "^8.4.16",
"prettier": "^3.2.5",
"tailwindcss": "^3.1.8",
"typescript": "^5.1.3",
"vite": "^4.3.2",
"vite-tsconfig-paths": "^4.2.0",
"vitest": "^0.32.0"
},
"resolutions": {
"**/@agoric/xsnap": "0.14.3-u14.0",
"**/@agoric/time": "0.3.3-u14.0",
"**/@agoric/vats": "0.15.2-u15.0"
}
}