-
Notifications
You must be signed in to change notification settings - Fork 52
Expand file tree
/
Copy pathpackage.json
More file actions
131 lines (131 loc) · 4.26 KB
/
package.json
File metadata and controls
131 lines (131 loc) · 4.26 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
123
124
125
126
127
128
129
130
131
{
"name": "@celo-mondo/celo-mondo-web",
"version": "1.0.0",
"description": "Staking and Governance Tools for Celo",
"keywords": [
"Celo",
"Staking",
"Governance",
"Delgation"
],
"author": "J M Rossy & cLabs Devtooling team",
"repository": {
"type": "git",
"url": "https://github.com/celo-org/celo-mondo"
},
"type": "module",
"homepage": "https://github.com/celo-org/celo-mondo",
"dependencies": {
"@celo/abis": "^14.0.1",
"@celo/actions": "^0.2.0",
"@celo/compliance": "^1.0.29",
"@headlessui/react": "^2.2.9",
"@metamask/jazzicon": "^2.0.0",
"@metamask/post-message-stream": "6.1.2",
"@metamask/providers": "10.2.1",
"@rainbow-me/rainbowkit": "2.2.9",
"@slack/socket-mode": "^2.0.5",
"@slack/web-api": "^7.13.0",
"@tanstack/react-query": "^5.90.11",
"@tanstack/react-table": "^8.21.3",
"@vercel/analytics": "^1.3.0",
"@vercel/functions": "^2.0.0",
"bignumber.js": "^9.1.2",
"clsx": "^2.1.1",
"drizzle-orm": "^0.44.2",
"formik": "2.4.9",
"isomorphic-dompurify": "^2.22.0",
"micromark": "^4.0.0",
"micromark-extension-gfm-table": "^2.0.0",
"next": "15.5.9",
"octokit": "^5.0.3",
"postgres": "^3.4.7",
"react": "^19.2.1",
"react-dom": "^19.2.1",
"react-minimal-pie-chart": "^8.4.1",
"react-toastify": "^10.0.5",
"sharp": "^0.33.5",
"uuid": "^13.0.0",
"viem": "2.41.2",
"wagmi": "2.19.5",
"yaml": "^2.4.2",
"zod": "^3.25.76"
},
"devDependencies": {
"@celo/devchain-anvil": "12.0.0-canary.49",
"@electric-sql/pglite": "^0.3.5",
"@playwright/test": "^1.58.2",
"@tanstack/eslint-plugin-query": "^5.91.2",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.0",
"@types/node": "^20.19.25",
"@types/react": "^19.2.7",
"@types/react-dom": "^19.2.3",
"@types/uuid": "^11.0.0",
"@typescript-eslint/eslint-plugin": "^7.4.0",
"@typescript-eslint/parser": "^7.4.0",
"@viem/anvil": "^0.0.10",
"@vitejs/plugin-react": "^4.3.4",
"autoprefixer": "^10.4.20",
"babel-plugin-react-compiler": "^19.1.0-rc.3",
"critters": "^0.0.25",
"daisyui": "^4.9.0",
"dotenv": "^16.5.0",
"drizzle-kit": "^0.31.1",
"eslint": "^8.57.1",
"eslint-config-next": "^15.2.2",
"eslint-config-prettier": "^9.1.0",
"happy-dom": "^20.0.0",
"husky": "^9.0.11",
"lint-staged": "^16.1.5",
"pinst": ">=2",
"postcss": "^8.5.1",
"prettier": "^3.3.3",
"prettier-plugin-organize-imports": "^3.2.4",
"prettier-plugin-tailwindcss": "^0.5.12",
"tailwindcss": "^3.4.18",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"tsx": "^4.20.3",
"typescript": "^5.4.3",
"vitest": "^2.1.1"
},
"resolutions": {
"bignumber.js": "9.1.2",
"zustand": "^4.4",
"bn.js": "^5.2.1"
},
"scripts": {
"prepare": "husky",
"setup:env": "node setup-env.js",
"clean": "rm -rf dist cache .next",
"migrate": "tsx ./src/scripts/migrate.ts",
"dev": "next dev --turbopack",
"build": "yarn build:ci",
"backfill-db": "tsx ./src/scripts/fetchHistoricalGovernanceEvents.ts",
"backfill-approvals": "tsx ./src/scripts/fetchHistoricalMultiSigEvents.ts",
"backfill-approvals-optimized": "tsx ./src/scripts/fetchHistoricalMultiSigEventsOptimized.ts",
"populate-test-data": "tsx ./src/scripts/populateTestData.ts",
"update-proposal-stages": "tsx ./src/scripts/updateProposalStages.ts",
"update-known-tx-selectors": "tsx ./src/scripts/cacheProposalSelectors.ts",
"build:ci": "yarn build:proposals && yarn build:delegatees-json && yarn build:app",
"build:delegatees-json": "tsx ./src/scripts/combineDelegateesMetadata.ts",
"build:proposals": "tsx ./src/scripts/collectProposalMetadata.ts",
"build:app": "next build",
"typecheck": "tsc",
"lint": "next lint",
"start": "yarn migrate && next start",
"test": "vitest",
"test:e2e": "playwright test",
"prettier": "prettier --write ./src",
"checks": "yarn typecheck && yarn lint && yarn test && yarn prettier && yarn build:app",
"postinstall": "husky install",
"prepublishOnly": "pinst --disable",
"postpublish": "pinst --enable"
},
"packageManager": "yarn@4.7.0",
"engines": {
"node": "20"
}
}