-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.17 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 2.17 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
{
"name": "@oasisprotocol/blockvote-frontend",
"private": true,
"version": "0.0.0",
"license": "See License in ../LICENSE",
"type": "module",
"scripts": {
"checkTs": "tsc --noEmit",
"dev": "vite",
"build": "tsc && node ./internals/scripts/build.mjs",
"lint": "eslint --ext js,ts,tsx ./",
"prettify": "prettier src --write",
"preview": "vite preview",
"visualize:bundle": "npx vite-bundle-visualizer"
},
"engines": {
"node": ">=18",
"pnpm": ">=9"
},
"dependencies": {
"@metamask/detect-provider": "^2.0.0",
"@metamask/jazzicon": "^2.0.0",
"@noble/hashes": "1.3.2",
"@oasisprotocol/blockvote-contracts": "workspace:^",
"@oasisprotocol/deoxysii": "^0.0.6",
"@oasisprotocol/sapphire-ethers-v6": "^6.0.1",
"@oasisprotocol/sapphire-paratime": "^2.0.1",
"@phosphor-icons/core": "^2.1.1",
"@radix-ui/react-dialog": "^1.1.14",
"@radix-ui/react-tabs": "^1.1.1",
"@tailwindcss/vite": "^4.1.11",
"cborg": "1.10.2",
"ethers": "6.10.0",
"framer-motion": "^11.5.4",
"lru-cache": "10.1.0",
"rc-tooltip": "^6.2.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-helmet-async": "^2.0.5",
"react-intersection-observer": "^9.8.1",
"react-markdown": "^9.0.1",
"react-parallax-tilt": "^1.7.217",
"react-responsive": "^9.0.2",
"react-router-dom": "^6.22.2",
"react-share": "^5.1.0",
"recharts": "^2.12.2",
"tailwind-merge": "^3.3.1",
"tailwindcss": "^4.1.11",
"tw-animate-css": "^1.3.5",
"uuid": "^10.0.0"
},
"devDependencies": {
"@types/react": "^18.2.56",
"@types/react-dom": "^18.2.19",
"@types/uuid": "^10.0.0",
"@typescript-eslint/parser": "^8.8.0",
"@vitejs/plugin-react-swc": "^3.5.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-react-app": "^7.0.1",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.35.2",
"eslint-plugin-react-hooks": "^4.6.2",
"glob": "^10.4.5",
"prettier": "^3.3.3",
"rollup-plugin-visualizer": "^5.12.0",
"typescript": "^5.6.2",
"vite": "^6.0.0",
"vite-plugin-singlefile": "^1.0.0",
"vite-plugin-svgr": "^4.2.0"
}
}