-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
114 lines (114 loc) · 2.65 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
109
110
111
112
113
114
{
"name": "SC-Kurate",
"version": "0.1.0",
"private": true,
"dependencies": {
"@erebos/keccak256": "^0.13.1",
"@erebos/secp256k1": "^0.10.0",
"@ethersphere/bee-js": "3.3.1",
"@material-ui/core": "^4.9.5",
"@material-ui/icons": "^4.9.1",
"@material-ui/lab": "^4.0.0-alpha.50",
"@material-ui/pickers": "^3.3.10",
"@openzeppelin/contracts": "^4.5.0",
"@reduxjs/toolkit": "^1.8.0",
"@silvia-odwyer/photon": "^0.3.11",
"@testing-library/jest-dom": "^5.16.2",
"@testing-library/react": "^12.1.4",
"@testing-library/user-event": "^13.5.0",
"@truffle/hdwallet-provider": "^2.0.4",
"assert": "^2.0.0",
"base32-decode": "^1.0.0",
"base32-encode": "^2.0.0",
"buffer": "^6.0.3",
"caman": "^4.1.2",
"crypto-browserify": "^3.12.0",
"https-browserify": "^1.0.0",
"husky": "^7.0.4",
"lint-staged": "^12.3.6",
"moment": "^2.29.1",
"os-browserify": "^0.3.0",
"pouchdb": "^7.2.2",
"react": "17.0.2",
"react-advanced-form": "^1.7.2",
"react-advanced-form-addons": "^1.3.3",
"react-avatar-editor": "^12.0.0",
"react-cropper": "^2.1.8",
"react-dom": "17.0.2",
"react-easy-crop": "^4.1.3",
"react-qr-code": "^2.0.3",
"react-redux": "^7.2.6",
"react-router-dom": "^6.2.2",
"react-scripts": "5.0.0",
"redux-persist": "^6.0.0",
"redux-pouchdb-plus": "^0.11.1",
"redux-saga": "^1.1.3",
"simple-crop": "^4.1.3",
"stream-browserify": "^3.0.0",
"stream-http": "^3.2.0",
"swr": "^1.2.2",
"truffle": "^5.5.4",
"unfetch": "^4.2.0",
"utf8-encoder": "^1.0.1",
"video-react": "^0.15.0",
"wasm-pack": "^0.10.2",
"wasm-worker": "^0.4.0",
"web3": "1.7.1"
},
"resolutions": {
"leveldown": "5.0.2"
},
"homepage": ".",
"scripts": {
"start": "react-app-rewired start",
"build": "react-app-rewired build && exit 0",
"test": "react-app-rewired test"
},
"eslintConfig": {
"extends": "react-app",
"rules": {
"jsx-a11y/alt-text": "off"
}
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.5",
"@nomiclabs/hardhat-waffle": "^2.0.3",
"chai": "^4.3.6",
"eslint": "^8.11.0",
"eslint-config-react-app": "^7.0.0",
"eslint-plugin-react": "^7.29.4",
"ethereum-waffle": "^3.4.0",
"ethers": "^5.6.1",
"hardhat": "^2.9.1",
"prettier": "^2.6.0",
"react-app-rewired": "^2.2.1",
"wasm-loader": "^1.3.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,json,css,md,sol}": [
"prettier --write",
"git add"
],
"*.js": [
"eslint --fix",
"git add"
]
}
}