-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
101 lines (101 loc) · 3.34 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
{
"name": "@impact-market/utils",
"version": "4.2.1",
"description": "impactMarket utils",
"repository": {
"type": "git",
"url": "git+https://github.com/impactMarket/utils.git"
},
"author": "impact-market",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/impactMarket/utils/issues"
},
"homepage": "https://github.com/impactMarket/utils#readme",
"source": "src/index.ts",
"main": "dist/index.umd.js",
"module": "dist/index.modern.module.js",
"unpkg": "dist/index.umd.js",
"types": "dist/index.d.ts",
"engines": {
"node": ">=16"
},
"files": [
"**.js*",
"**.js*",
"*.d.ts",
"abi"
],
"scripts": {
"build:clean": "rm *.js *.js.map *.d.ts.map *.d.ts",
"build": "yarn build:clean && tsc",
"start": "tsc -w",
"test": "jest",
"coverage": "jest --coverage --coverageReporters=html",
"test:watch": "mocha --watch",
"docs": "typedoc src",
"version": "auto-changelog -p && git add CHANGELOG.md",
"prettier": "prettier --write \"./{src,tests}/**/*.{ts,tsx}\"",
"prettier:dryrun": "prettier -l \"./{src,tests}/**/*.{ts,tsx}\"",
"eslint": "eslint --fix \"./{src,tests}/**/*.{ts,tsx}\" --max-warnings=0",
"eslint:dryrun": "eslint \"./{src,tests}/**/*.{ts,tsx}\" --max-warnings=0"
},
"devDependencies": {
"@apollo/client": "3.8.6",
"@babel/core": "7.23.2",
"@celo/connect": "3.2.0",
"@ethersproject/abi": "5.7.0",
"@ethersproject/abstract-signer": "5.7.0",
"@ethersproject/bytes": "5.7.0",
"@ethersproject/contracts": "5.7.0",
"@ethersproject/providers": "5.7.2",
"@ethersproject/strings": "5.7.0",
"@testing-library/react": "12.1.5",
"@testing-library/user-event": "12.8.3",
"@types/chai": "4.3.9",
"@types/jest": "28.1.8",
"@types/node": "18.6.4",
"@types/react": "17.0.39",
"@types/react-dom": "17.0.11",
"@typescript-eslint/eslint-plugin": "6.9.0",
"@typescript-eslint/parser": "6.9.0",
"@wagmi/core": "1.4.2",
"auto-changelog": "2.4.0",
"axios": "0.27.2",
"axios-mock-adapter": "1.21.1",
"babel-eslint": "10.1.0",
"bignumber.js": "9.1.2",
"chai": "4.3.10",
"eslint": "8.52.0",
"eslint-config-impact-market": "2.3.2",
"graphql": "16.8.1",
"jest": "28.1.3",
"jest-environment-jsdom": "28.1.3",
"prettier": "3.0.3",
"react": "17.0.2",
"react-dom": "17.0.2",
"ts-jest": "28.0.8",
"ts-node": "10.9.1",
"typedoc": "0.25.2",
"typescript": "5.2.2",
"viem": "1.17.2",
"wagmi": "1.4.5"
},
"peerDependencies": {
"@apollo/client": "^3.8.6",
"@celo/connect": "^3.2.0",
"@ethersproject/abi": "5.7.0",
"@ethersproject/abstract-signer": "5.7.0",
"@ethersproject/bytes": "5.7.0",
"@ethersproject/contracts": "5.7.0",
"@ethersproject/providers": "5.7.2",
"@ethersproject/strings": "5.7.0",
"@wagmi/core": "^1.4.5",
"axios": "^0.27.2",
"bignumber.js": "^9.1.2",
"graphql": "^16.8.1",
"react": "^17.0.2",
"viem": "^1.17.2",
"wagmi": "^1.4.5"
}
}