forked from celo-org/celo-mondo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
92 lines (92 loc) · 2.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
{
"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",
"repository": {
"type": "git",
"url": "https://github.com/celo-org/celo-mondo"
},
"homepage": "https://github.com/celo-org/celo-mondo",
"dependencies": {
"@celo/abis": "^11.0.0",
"@headlessui/react": "^1.7.18",
"@metamask/jazzicon": "https://github.com/jmrossy/jazzicon#7a8df28974b4e81129bfbe3cab76308b889032a6",
"@metamask/post-message-stream": "6.1.2",
"@metamask/providers": "10.2.1",
"@rainbow-me/rainbowkit": "2.1.1",
"@tanstack/react-query": "^5.28.9",
"@tanstack/react-table": "^8.15.0",
"@vercel/analytics": "^1.3.0",
"bignumber.js": "^9.1.2",
"clsx": "^2.1.1",
"dompurify": "^3.1.4",
"formik": "2.4.6",
"micromark": "^4.0.0",
"micromark-extension-gfm-table": "^2.0.0",
"next": "14.1.4",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-minimal-pie-chart": "^8.4.0",
"react-toastify": "^10.0.5",
"viem": "2.12.1",
"wagmi": "2.9.6",
"yaml": "^2.4.2",
"zod": "^3.23.8"
},
"devDependencies": {
"@tanstack/eslint-plugin-query": "^5.28.6",
"@types/dompurify": "^3",
"@types/jest": "^29.5.12",
"@types/node": "^20.11.30",
"@types/react": "^18.2.73",
"@types/react-dom": "^18.2.22",
"@typescript-eslint/eslint-plugin": "^7.4.0",
"@typescript-eslint/parser": "^7.4.0",
"autoprefixer": "^10.4.19",
"critters": "^0.0.22",
"daisyui": "^4.9.0",
"dotenv": "^16.4.5",
"eslint": "^8.57.0",
"eslint-config-next": "^14.1.4",
"eslint-config-prettier": "^9.1.0",
"husky": "^9.0.11",
"jest": "^29.7.0",
"lint-staged": "^15.2.2",
"postcss": "^8.4.38",
"prettier": "^3.3.3",
"prettier-plugin-organize-imports": "^3.2.4",
"prettier-plugin-tailwindcss": "^0.5.12",
"tailwindcss": "^3.4.2",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"tsx": "^4.7.1",
"typescript": "^5.4.3"
},
"resolutions": {
"bignumber.js": "9.1.2",
"zustand": "^4.4",
"bn.js": "^5.2"
},
"scripts": {
"prepare": "husky",
"clean": "rm -rf dist cache .next",
"dev": "next dev",
"build": "yarn build:proposals && yarn build:app",
"build:proposals": "tsx ./src/scripts/collectProposalMetadata.ts",
"build:app": "next build",
"typecheck": "tsc",
"lint": "next lint",
"start": "next start",
"test": "jest",
"prettier": "prettier --write ./src",
"checks": "yarn typecheck && yarn lint && yarn test && yarn prettier && yarn build:app"
},
"packageManager": "[email protected]"
}