-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
81 lines (81 loc) · 2.1 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
{
"name": "@ensuro/ethereum-store",
"version": "%%VERSION%%",
"description": "Ethereum Store for React Redux",
"scripts": {
"prettier": "prettier --write .",
"test": "react-scripts test --env=./src/utils/testing/jest-environment-jsdom.js",
"start": "react-scripts start",
"build": "react-scripts build",
"build:lib": "babel src -d lib/src; cp package.json lib/package.json; cp README.md lib/README.md; cp LICENSE lib/LICENSE",
"eject": "react-scripts eject",
"coverage": "react-scripts test --coverage --watchAll --env=./src/utils/testing/jest-environment-jsdom.js"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
"chrome >= 67",
"edge >= 79",
"firefox >= 68",
"opera >= 54",
"safari >= 14"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"dependencies": {
"big.js": "^6.2.1",
"buffer": "^6.0.3",
"ethers": "^6.9.0",
"lodash": "^4.17.21",
"lodash.clonedeep": "^4.5.0",
"react-redux": "^9.0.4",
"react-router-dom": "^6.21.0",
"reactstrap": "^9.2.1",
"redux": "^5.0.0",
"redux-saga": "^1.2.3",
"reselect": "^4.1.8",
"web3": "^4.3.0"
},
"devDependencies": {
"@babel/cli": "^7.23.4",
"@babel/core": "^7.23.6",
"@babel/preset-env": "^7.23.6",
"@openzeppelin/contracts": "^5.0.1",
"@testing-library/jest-dom": "^6.1.5",
"@testing-library/react": "^14.1.2",
"@testing-library/user-event": "^14.5.1",
"prettier": "^3.1.1",
"react-scripts": "^5.0.1",
"sinon": "^17.0.1"
},
"peerDependencies": {
"react": "^18.2.0",
"react-bootstrap": "^2.8.0",
"react-dom": "^18.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ensuro/ethereum-store.git"
},
"keywords": [
"ethereum",
"insurance",
"ensuro",
"redux",
"store"
],
"author": "Ensuro Dev Team <dev@ensuro.co>",
"license": "MIT",
"bugs": {
"url": "https://github.com/ensuro/ethereum-store/issues"
}
}