-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
106 lines (106 loc) · 3.14 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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "vocdoni-ui",
"version": "1.0.0",
"description": "Frontend for the Vocdoni voting client",
"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}' --quiet .",
"i18n-extract": "i18next",
"storybook": "start-storybook -p 6006 -s ./public",
"build-storybook": "build-storybook"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vocdoni/vocdoni-ui.git"
},
"keywords": [],
"author": "",
"bugs": {
"url": "https://github.com/vocdoni/vocdoni-ui/issues"
},
"homepage": "https://github.com/vocdoni/vocdoni-ui#readme",
"dependencies": {
"@ant-design/icons": "^4.0.0",
"@tiptap/core": "^2.0.0-beta.96",
"@tiptap/extension-link": "^2.0.0-beta.19",
"@tiptap/extension-underline": "^2.0.0-beta.16",
"@tiptap/react": "^2.0.0-beta.58",
"@tiptap/starter-kit": "^2.0.0-beta.94",
"@vocdoni/census": "~1.16.0",
"@vocdoni/client": "~1.16.6",
"@vocdoni/common": "^1.15.3",
"@vocdoni/react-hooks": "0.15.0",
"@vocdoni/signing": "~1.16.2",
"@vocdoni/voting": "~1.16.4",
"@vocdoni/wallets": "~1.16.0",
"blob-stream": "^0.1.3",
"bluebird": "^3.7.2",
"brfs": "^2.0.2",
"copy-to-clipboard": "^3.3.1",
"dexie": "^3.0.3",
"dvote-js": "1.16.2",
"ethers": "^5.5.0",
"filesize": "^6.2.2",
"hamburger-react": "^2.4.0",
"html-react-parser": "^1.4.5",
"i18next": "^20.1.0",
"lodash": "^4.17.21",
"markdown-it": "^12.2.0",
"moment": "^2.29.1",
"next": "^10.0.5",
"pdfkit": "^0.12.1",
"rc-checkbox": "^2.3.2",
"react": "^17.0.2",
"react-circular-progressbar": "^2.0.4",
"react-datetime": "^3.0.4",
"react-dom": "^17.0.1",
"react-i18next": "^11.3.3",
"react-if": "^4.0.1",
"react-inlinesvg": "^2.3.0",
"react-player": "^2.9.0",
"react-rainbow-components": "^1.25.0",
"react-select": "^3.1.0",
"react-svg-spinner": "^1.0.4",
"recoil": "^0.4.0",
"remixicon": "^2.5.0",
"sanitize-html": "2.7.3",
"styled-components": "^5.3.0",
"token-amount": "^0.3.0",
"turndown": "^7.1.1",
"typescript": "~4.3.2",
"use-url-hash": "^0.1.0",
"xlsx": "^0.16.9"
},
"devDependencies": {
"@babel/core": "^7.16.7",
"@next/bundle-analyzer": "^10.2.3",
"@storybook/addon-actions": "^6.4.10",
"@storybook/addon-essentials": "^6.4.10",
"@storybook/addon-links": "^6.4.10",
"@storybook/react": "^6.4.10",
"@svgr/webpack": "^5.5.0",
"@types/date-fns": "^2.6.0",
"@types/hoist-non-react-statics": "^3.3.1",
"@types/markdown-it": "^12.2.0",
"@types/node": "^15.3.0",
"@types/react": "17.0.2",
"@types/react-select": "^3.1.0",
"@types/styled-components": "^5.1.7",
"@types/turndown": "^5.0.1",
"babel-loader": "^8.2.3",
"eslint": "^7.12.1",
"eslint-plugin-react": "^7.23.2",
"hoist-non-react-statics": "^3.3.2",
"i18next-parser": "^3.7.0",
"tsconfig-paths-webpack-plugin": "^3.5.2"
},
"overrides": {
"@vocdoni/census": {
"snarkjs": "0.4.22"
}
}
}