This repository has been archived by the owner on Aug 23, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
80 lines (80 loc) · 2.25 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
{
"name": "explorer-ui",
"version": "1.0.0",
"description": "Frontend to explore the Vocdoni voting blockchain",
"main": "index.js",
"scripts": {
"dev": "next dev -p 8080",
"build": "next build",
"start": "next start",
"export": "next build && next export -o build",
"lint": "eslint '*/**/*.{js,ts,tsx}' .",
"lintfix": "yarn lint --fix",
"i18n-extract": "i18next",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vocdoni/explorer-ui.git"
},
"keywords": [],
"author": "",
"bugs": {
"url": "https://github.com/vocdoni/explorer-ui/issues"
},
"homepage": "https://github.com/vocdoni/explorer-ui#readme",
"jest": {
"preset": "ts-jest",
"testEnvironment": "node"
},
"prettier": {
"printWidth": 120,
"semi": true,
"singleQuote": true,
"trailingComma": "es5"
},
"dependencies": {
"@chakra-ui/react": "^2.5.1",
"@emotion/react": "^11.10.6",
"@emotion/styled": "^11.10.6",
"@types/react-dom": "^18.0.11",
"@vocdoni/chakra-components": "0.6.0",
"@vocdoni/react-providers": "0.2.1",
"@vocdoni/sdk": "https://github.com/vocdoni/vocdoni-sdk.git#main",
"copy-to-clipboard": "^3.3.1",
"ethers": "^5.4.1",
"framer-motion": "^10.0.1",
"html-react-parser": "^1.4.5",
"i18next": "^22.4.10",
"i18next-browser-languagedetector": "^7.1.0",
"next": "^13.1.4",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-i18next": "^12.2.0",
"react-icons": "^4.4.0",
"react-if": "^4.0.4",
"react-markdown": "^8.0.5",
"remark-gfm": "^3.0.1",
"styled-components": "^5.3.0",
"use-url-hash": "^0.1.0"
},
"devDependencies": {
"@types/react": "^18.0.1",
"@types/styled-components": "^5.1.7",
"@typescript-eslint/eslint-plugin": "^5.53.0",
"@typescript-eslint/parser": "^5.53.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.7.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"i18next-parser": "^7.7.0",
"jest": "^29.4.3",
"prettier": "2.8.4",
"ts-jest": "^29.0.5",
"typescript": "^4.9.5"
},
"resolutions": {
"@vocdoni/sdk": "https://github.com/vocdoni/vocdoni-sdk.git#main"
}
}