forked from idena-network/idena-web
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
108 lines (108 loc) · 3 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
107
108
{
"name": "idena-validation",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "next dev",
"start": "next start",
"build": "next build",
"test": "jest",
"lint": "eslint .",
"i18n:init": "npm run i18n:clean && npm run i18n:scan",
"i18n:scan": "i18next-scanner",
"i18n:clean": "rm -rf public/locales/**"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.6.0",
"@testing-library/react": "^9.1.4",
"babel-eslint": "^10.0.1",
"babel-jest": "^24.9.0",
"cors": "^2.8.5",
"dotenv-cli": "^3.1.0",
"eslint": "^5.14.1",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-prettier": "^4.1.0",
"eslint-config-wesbos": "0.0.19",
"eslint-plugin-html": "^5.0.3",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-react": "^7.12.4",
"eslint-plugin-react-hooks": "^1.6.0",
"eslint-plugin-testcafe": "^0.2.1",
"i18next-scanner": "^3.1.0",
"jest": "^24.9.0",
"prettier": "^1.16.4",
"react-dom": "^17.0.2"
},
"dependencies": {
"@chakra-ui/icons": "^1.0.14",
"@chakra-ui/react": "^1.6.10",
"@chakra-ui/theme-tools": "^1.1.9",
"@emotion/react": "^11.0.0",
"@emotion/styled": "^11.0.0",
"@idena/vrf-js": "^1.0.1",
"@react-hook/hover": "^4.0.0",
"@toast-ui/react-image-editor": "^1.2.0",
"@xstate/react": "^1.6.3",
"axios": "^0.18.1",
"bn.js": "^5.1.3",
"canvas-confetti": "^1.4.0",
"cids": "^1.1.4",
"color-convert": "^2.0.1",
"cookie-cutter": "^0.2.0",
"dayjs": "^1.8.14",
"decimal.js": "^10.3.1",
"dequal": "^1.0.0",
"dexie": "^3.0.2",
"duckduckgo-images-api": "^1.0.5",
"elliptic": "^6.5.3",
"extract-colors": "^1.1.22",
"faunadb": "^4.3.0",
"file-saver": "^2.0.5",
"focus-visible": "^5.2.0",
"framer-motion": "^4.1.17",
"google-protobuf": "^3.13.0",
"i18next": "^19.0.1",
"i18next-browser-languagedetector": "^6.1.4",
"i18next-http-backend": "^1.4.0",
"idena-eciesjs": "^1.0.0",
"jimp": "^0.9.6",
"js-sha3": "^0.8.0",
"mousetrap": "^1.6.3",
"multiformats": "^9.6.4",
"nanoid": "^2.0.1",
"next": "^11.1.2",
"polished": "^3.3.0",
"prop-types": "^15.6.2",
"qrcode.react": "^0.9.3",
"react": "^17.0.2",
"react-beautiful-dnd": "^10.0.4",
"react-device-detect": "^2.1.2",
"react-i18next": "^11.2.5",
"react-icons": "^3.7.0",
"react-qr-reader": "^2.2.1",
"react-query": "^3.9.8",
"react-scroll": "^1.8.4",
"react-swipeable": "^7.0.0",
"redact-object": "^3.0.1",
"rlp": "^2.2.2",
"secp256k1": "^4.0.2",
"semver": "^6.3.0",
"stackblur-canvas": "^2.5.0",
"twitter": "^1.7.1",
"url-regex-safe": "^3.0.0",
"use-deep-compare-effect": "^1.2.0",
"uuid": "^8.3.2",
"xstate": "^4.26.1"
},
"prettier": {
"trailingComma": "es5",
"semi": false,
"singleQuote": true,
"bracketSpacing": false
}
}