-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
84 lines (84 loc) · 2.75 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
{
"name": "agoric-gov-proposal-hub",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"build": "tsc && vite build",
"dev": "vite",
"start:docker": "docker-compose up -d",
"agd": "docker-compose exec agd agd",
"list-proposals": "yarn run --silent agd query gov proposals -o json | jq -c '.proposals[] | [.proposal_id,.voting_end_time,.status]'",
"show-block-height": "yarn run --silent agd status|jq -r .SyncInfo.latest_block_height",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives",
"lint:fix": "yarn lint --fix",
"preview": "vite preview",
"test": "yarn test:unit",
"test:unit": "vitest spec",
"test:e2e": "vitest e2e",
"test:coverage": "vitest run --coverage",
"test:watch": "vitest --watch",
"ts:check": "tsc --noEmit"
},
"dependencies": {
"@agoric/casting": "^0.4.3-u13.0",
"@agoric/cosmic-proto": "dev",
"@agoric/eventual-send": "^0.14.1",
"@agoric/notifier": "^0.6.2",
"@agoric/store": "^0.9.2",
"@agoric/ui-components": "^0.8.0",
"@cosmjs/stargate": "^0.31.1",
"@headlessui/react": "^1.7.17",
"@heroicons/react": "^2.0.18",
"@paralleldrive/cuid2": "^2.2.2",
"@tanstack/react-query": "^5.7.0",
"lodash.isequal": "^4.5.0",
"moment": "^2.30.1",
"prismjs": "^1.29.0",
"query-string": "^8.1.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-toastify": "^9.1.3",
"ses": "1.3.0",
"wouter": "^2.12.1"
},
"devDependencies": {
"@keplr-wallet/types": "^0.12.35",
"@tailwindcss/forms": "^0.5.5",
"@tanstack/eslint-plugin-query": "^5.6.0",
"@tanstack/react-query-devtools": "^5.7.2",
"@testing-library/jest-dom": "^6.1.4",
"@testing-library/react": "^14.0.0",
"@testing-library/react-hooks": "^8.0.1",
"@types/lodash.isequal": "^4.5.8",
"@types/prismjs": "^1.26.2",
"@types/react": "^18.2.15",
"@types/react-dom": "^18.2.7",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"@vitejs/plugin-react": "^4.1.0",
"@vitest/coverage-v8": "^0.34.6",
"cosmjs-types": "^0.8.0",
"eslint": "^8.45.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.3",
"happy-dom": "^12.9.1",
"postcss": "^8.4.28",
"postinstall-postinstall": "^2.1.0",
"prettier": "^3.1.1",
"react-test-renderer": "^18.2.0",
"tailwindcss": "^3.3.3",
"typescript": "^5.0.2",
"vite": "^4.4.5",
"vitest": "^0.34.6"
},
"resolutions": {
"@cosmjs/encoding": "0.31.1",
"@cosmjs/proto-signing": "0.31.1",
"@cosmjs/stargate": "0.31.1",
"@cosmjs/tendermint-rpc": "0.31.1",
"ses": "1.3.0"
}
}