-
Notifications
You must be signed in to change notification settings - Fork 53
/
package.json
85 lines (85 loc) · 2.43 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
{
"name": "@zoralabs/nft-hooks",
"version": "1.2.1",
"description": "Generic react hooks for fetching zora auctions, nfts, and data on arbitary 721s. Powers nft-components.",
"repository": "https://github.com/ourzora/nft-hooks",
"homepage": "https://github.com/ourzora/nft-hooks#README",
"author": "Zora",
"license": "GPL-3.0",
"private": false,
"typings": "dist/index.d.ts",
"source": "src/index.ts",
"main": "dist/index.js",
"files": [
"dist"
],
"devDependencies": {
"@graphql-codegen/cli": "^1.21.4",
"@graphql-codegen/typescript": "^1.22.0",
"@graphql-codegen/typescript-graphql-request": "^4.4.8",
"@graphql-codegen/typescript-operations": "^1.17.16",
"@graphql-tools/mock": "^8.1.1",
"@graphql-tools/schema": "^7.1.4",
"@jagi/jest-transform-graphql": "^1.0.2",
"@testing-library/react-hooks": "^8.0.0",
"@types/big.js": "^6.0.2",
"@types/jest": "^26.0.23",
"@types/react": "^18.0.9",
"fetch-mock-jest": "^1.5.1",
"graphql": "^15.5.0",
"graphql-tools": "^7.0.4",
"husky": "^6.0.0",
"jest": "^28.0.2",
"jest-environment-jsdom": "^28.1.0",
"jest-runner": "^28.1.0",
"jest-serial-runner": "^1.2.0",
"jest-transform-graphql": "^2.1.0",
"lint-staged": "^10.5.4",
"prettier": "^2.6.2",
"react": "^18.1.0",
"react-test-renderer": "^18.1.0",
"ts-jest": "^28.0.2",
"typescript": "^4.6.4"
},
"scripts": {
"publish": "npm publish",
"publish-prerelease": "npm publish --access public --tag=strategies-pre-release",
"typegen": "graphql-code-generator",
"test": "jest",
"clean": "rm -rf ./dist",
"load-schemas": "./graph-schemas/get-schemas.sh",
"prepack": "yarn clean && tsc",
"build": "yarn run prepack",
"prepare": "husky install"
},
"lint-staged": {
"*.{ts,md}": "prettier src --write"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"peerDependencies": {
"react": ">= 17 < 19",
"react-dom": ">= 17 < 19"
},
"dependencies": {
"@ethersproject/address": "^5.6.0",
"@ethersproject/bytes": "^5.6.1",
"@types/deepmerge": "^2.2.0",
"@zoralabs/zdk": "2.1.6",
"big.js": "^6.1.0",
"cross-fetch": "^3.1.4",
"dataloader": "^2.0.0",
"deepmerge": "^4.2.2",
"graphql-request": "^4.2.0",
"node-abort-controller": "^2.0.0",
"swr": "^1.3.0",
"tslib": "^2.4.0"
},
"prettier": {
"singleQuote": true,
"printWidth": 90
}
}