-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
74 lines (74 loc) · 2.12 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
{
"name": "web3-toolkit-react",
"version": "0.5.1",
"description": "Web3 Toolkit for React",
"author": "Andrei Belokopytov",
"license": "MIT",
"repository": "AndreiBelokopytov/web3-toolkit",
"main": "dist/index.js",
"module": "dist/module.js",
"types": "dist/types.d.ts",
"source": "src/index.tsx",
"engines": {
"node": "^14.17.0 || ^16.10.0 || >=18.0.0"
},
"scripts": {
"build": "parcel build",
"watch": "parcel watch",
"test": "run-s test:unit test:lint build",
"test:lint": "eslint .",
"test:unit": "jest --env=jsdom",
"test:watch": "jest --env=jsdom --watch",
"prepare": "husky install"
},
"peerDependencies": {
"ethers": "^5.7.1",
"react": ">=16.14.0",
"react-dom": ">=16.14.0"
},
"devDependencies": {
"@babel/core": "^7.19.3",
"@babel/preset-env": "^7.19.4",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.18.6",
"@parcel/packager-ts": "2.7.0",
"@parcel/transformer-typescript-types": "2.7.0",
"@testing-library/dom": "^8.17.1",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^12.1.5",
"@testing-library/user-event": "^14.4.3",
"@types/events": "^3.0.0",
"@types/jest": "^29.0.1",
"@types/node": "^12.12.38",
"@types/react": "^16.4.7",
"@types/react-dom": "^16.9.9",
"@typescript-eslint/eslint-plugin": "^5.36.2",
"@typescript-eslint/parser": "^5.36.2",
"babel-eslint": "^10.0.3",
"babel-loader": "^8.2.5",
"eslint": "^8.23.1",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.0.1",
"eslint-plugin-react": "^7.31.8",
"eslint-plugin-react-hooks": "^4.6.0",
"ethers": "^5.7.1",
"husky": "^8.0.1",
"jest": "^29.2.0",
"jest-environment-jsdom": "^29.2.0",
"npm-run-all": "^4.1.5",
"parcel": "^2.7.0",
"prettier": "^2.7.1",
"react": "^16.14.0",
"react-dom": "^16.14.0",
"typescript": "4.7.4"
},
"files": [
"dist"
],
"dependencies": {
"@metamask/onboarding": "^1.0.1"
}
}