-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
70 lines (70 loc) · 2.14 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
{
"name": "agoric-psm",
"private": true,
"version": "0.0.1",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"lint": "eslint src",
"format": "prettier --write . && yarn lint --fix",
"test": "vitest",
"coverage": "vitest run --coverage",
"test:e2e": "EXTENSION=keplr SKIP_EXTENSION_SETUP=true synpress run --configFile=tests/e2e/synpress.config.cjs",
"test:e2e:ci": "start-server-and-test 'yarn dev' http-get://localhost:5173 'yarn test:e2e'"
},
"dependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@agoric/cosmic-proto": "^0.3.0",
"@agoric/ertp": "^0.16.2",
"@agoric/rpc": "^0.9.0",
"@agoric/smart-wallet": "^0.5.3",
"@agoric/synpress": "^3.8.1",
"@agoric/ui-components": "^0.9.0",
"@agoric/web-components": "^0.15.0",
"@agoric/zoe": "^0.26.2",
"@endo/eventual-send": "^1.1.2",
"@headlessui/react": "^1.6.6",
"@keplr-wallet/types": "^0.12.74",
"@leapwallet/elements": "0.12.1",
"@types/lodash-es": "^4.17.7",
"@types/node": "^18.7.13",
"@types/react": "^18.0.17",
"@types/react-dom": "^18.0.6",
"@typescript-eslint/eslint-plugin": "^5.35.1",
"@typescript-eslint/parser": "^5.35.1",
"@vitejs/plugin-react": "^2.0.1",
"autoprefixer": "^10.4.8",
"buffer": "^6.0.3",
"clsx": "^1.2.1",
"eslint": "^8.22.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-react": "^7.30.1",
"eslint-plugin-react-hooks": "^4.6.0",
"framer-motion": "^7.2.1",
"happy-dom": "^10.7.0",
"jotai": "^1.8.0",
"lodash-es": "4.17.21",
"postcss": "^8.4.16",
"prettier": "^2.7.1",
"react-icons": "^4.4.0",
"react-loader-spinner": "~5.4.5",
"react-toastify": "^9.0.8",
"start-server-and-test": "^2.0.3",
"ses": "^1.3.0",
"tailwindcss": "^3.1.8",
"typescript": "^4.6.4",
"vite": "^5.1.6",
"vite-tsconfig-paths": "^3.5.0",
"vitest": "^1.4.0"
},
"resolutions": {
"**/@agoric/xsnap": "0.14.3-dev-9f085d3.0",
"**/@agoric/time": "0.3.3-dev-97cb715.0"
}
}