-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.6 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
{
"name": "vocdoni-explorer",
"private": true,
"description": "Frontend to explore the Vocdoni voting blockchain",
"license": "unlicense",
"version": "0.0.1",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"translations": "i18next",
"lint": "tsc && prettier --check src",
"lint:fix": "prettier --write src"
},
"dependencies": {
"@chakra-ui/react": "2.5.5",
"@emotion/react": "^11.10.6",
"@emotion/styled": "^11.10.6",
"@tanstack/react-query": "^5.40.0",
"@vocdoni/chakra-components": "~0.9.1",
"@vocdoni/extended-sdk": "~0.2.0",
"@vocdoni/sdk": "~0.9.0",
"date-fns": "^2.29.3",
"ethers": "^5.7.2",
"framer-motion": "^10.9.2",
"i18next": "^23.11.5",
"i18next-browser-languagedetector": "^8.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-i18next": "^14.1.2",
"react-icons": "^5.2.1",
"react-markdown": "^8.0.6",
"react-router-dom": "^6.9.0",
"remark-gfm": "^3.0.1",
"vite-plugin-html": "^3.2.2",
"web-vitals": "^3.3.0"
},
"devDependencies": {
"@types/i18next": "^13.0.0",
"@types/react": "^18.0.30",
"@types/react-dom": "^18.0.11",
"@types/react-i18next": "^8.1.0",
"@vitejs/plugin-react": "^3.0.0",
"i18next-parser": "^8.13.0",
"prettier": "^3.2.5",
"typescript": "^5.0.2",
"vite": "^4.2.1",
"vite-tsconfig-paths": "^4.0.7"
},
"engines": {
"npm": "please use yarn",
"pnpm": "please use yarn",
"yarn": "^1.19.x",
"node": "20.x"
},
"resolutions": {
"@vocdoni/sdk": "~0.9.0"
}
}