-
Notifications
You must be signed in to change notification settings - Fork 46
/
Copy pathpackage.json
98 lines (98 loc) · 2.78 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
{
"name": "@synthetixio/queries",
"publishConfig": {
"access": "public"
},
"version": "3.0.23-0",
"description": "react-query for pulling synthetix data in react interfaces",
"source": "./src/index.ts",
"main": "./build/index.js",
"module": "./build/index.js",
"browser": "./build/index.js",
"types": "./build/index.d.ts",
"files": [
"build",
"src"
],
"scripts": {
"build": "yarn codegen && tsc --build --verbose",
"lint": "eslint './src/**/*.{js,ts,tsx}'",
"lint:fix": "eslint --fix './src/**/*.{js,ts,tsx}'",
"test": "jest --coverage --no-cache",
"codegen": "rm -rf ./src/subgraph && node ./codegen.js"
},
"repository": "Synthetixio/js-monorepo",
"author": "Synthetix",
"license": "MIT",
"bugs": {
"url": "https://github.com/Synthetixio/js-monorepo/issues"
},
"dependencies": {
"@ethersproject/abstract-signer": "^5.7.0",
"@ethersproject/address": "^5.7.0",
"@ethersproject/bignumber": "^5.7.0",
"@ethersproject/constants": "^5.7.0",
"@ethersproject/contracts": "^5.7.0",
"@ethersproject/providers": "^5.7.2",
"@ethersproject/strings": "^5.7.0",
"@ethersproject/transactions": "^5.7.0",
"@ethersproject/units": "^5.7.0",
"@snapshot-labs/snapshot.js": "^0.4.63",
"@synthetixio/contracts": "workspace:*",
"@synthetixio/contracts-interface": "workspace:*",
"@synthetixio/generate-subgraph-query": "workspace:*",
"@synthetixio/optimism-networks": "workspace:*",
"@synthetixio/wei": "^2.74.4",
"axios": "^1.3.3",
"date-fns": "^2.29.3",
"graphql": "^16.6.0",
"graphql-request": "^5.1.0",
"lodash": "^4.17.21"
},
"devDependencies": {
"@babel/core": "^7.23.2",
"@babel/plugin-transform-runtime": "^7.23.2",
"@babel/preset-env": "^7.23.2",
"@babel/preset-typescript": "^7.23.2",
"@synthetixio/codegen-graph-ts": "workspace:*",
"@tanstack/react-query": "^4.24.6",
"@types/lodash": "^4.14.191",
"@types/react": "^18.0.28",
"eslint": "^8.34.0",
"jest": "^29.7.0",
"prettier": "^2.8.4",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"typescript": "^4.9.5"
},
"browserslist": [
"last 1 Chrome version",
"last 1 Firefox version",
"last 1 Edge version",
"last 1 Opera version"
],
"peerDependencies": {
"@tanstack/react-query": "4",
"react": "*",
"react-dom": "*"
},
"jest": {
"testMatch": [
"<rootDir>/**/*.test.{js,jsx,ts,tsx}"
],
"collectCoverageFrom": [
"<rootDir>/src/**/*.{js,jsx,ts,tsx}",
"!<rootDir>/src/subgraph/*.{js,jsx,ts,tsx}",
"!<rootDir>/src/**/*.d.{js,jsx,ts,tsx}"
],
"coverageThreshold": {
"global": {
"branches": 0,
"functions": 0,
"lines": 0,
"statements": 0
}
}
},
"stableVersion": "3.0.22"
}