-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
102 lines (102 loc) · 2.83 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
{
"name": "@incirlabs/react-ethooks",
"version": "0.0.0-development",
"title": "React Ethereum Hooks",
"description": "React hooks for the ethers library",
"private": false,
"main": "dist/index.js",
"module": "dist/index.esm.js",
"typings": "dist/index.d.ts",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "https://github.com/incirlabs/react-ethooks"
},
"bugs": {
"url": "https://github.com/incirlabs/react-ethooks/issues"
},
"keywords": [
"ethereum",
"ethers",
"ethersjs",
"react",
"hooks",
"web3"
],
"license": "MIT",
"scripts": {
"build": "yarn clean-build && yarn rollup-build",
"watch": "yarn rollup-build -w",
"rollup-build": "rollup -c",
"clean-build": "rimraf dist",
"format": "prettier --write \"src/**/*.{ts,tsx}\"",
"lint": "yarn lint:check --fix",
"format:check": "prettier -c \"src/**/*.{ts,tsx}\"",
"lint:check": "eslint \"src/**/*.{ts,tsx}\"",
"ts:check": "tsc --noEmit",
"check": "yarn format && yarn format:check && yarn lint:check && yarn ts:check",
"semantic-release": "semantic-release",
"cz": "git-cz"
},
"peerDependencies": {
"ethers": ">=5.6.1",
"react": ">=17.0.0"
},
"dependencies": {
"ethers": "^5.6.1"
},
"devDependencies": {
"@babel/core": "^7.17.8",
"@babel/preset-react": "^7.16.7",
"@babel/preset-typescript": "^7.16.7",
"@rollup/plugin-commonjs": "^21.0.2",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.1.3",
"@rollup/plugin-typescript": "^8.3.1",
"@types/node": "^17.0.21",
"@types/react": "^17.0.20",
"@typescript-eslint/eslint-plugin": "^5.13.0",
"@typescript-eslint/parser": "^5.13.0",
"babel-eslint": "^10.1.0",
"commitizen": "^4.2.4",
"eslint": "^8.7.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-html": "^6.2.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jest": "^26.0.0",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"prettier": "^2.5.1",
"react": "^18.1.0",
"rollup": "^2.70.1",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-cleanup": "^3.2.1",
"rollup-plugin-peer-deps-external": "^2.2.4",
"semantic-release": "^19.0.2",
"tslib": "^2.3.1",
"typescript": "^4.5.5"
},
"release": {
"branches": [
"main"
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/npm",
"@semantic-release/github"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}