forked from ourzora/nft-hooks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 1.94 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
{
"name": "@zoralabs/nft-hooks",
"version": "0.3.2",
"description": "Generic Rendering Component for zNFTs",
"repository": "https://github.com/ourzora/nft-hooks",
"homepage": "https://github.com/ourzora/nft-hooks#README",
"author": "Zora",
"license": "MIT",
"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": "^3.1.1",
"@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": "^5.1.2",
"@types/big.js": "^6.0.2",
"@types/jest": "^26.0.23",
"@types/react": "^17.0.4",
"fetch-mock-jest": "^1.5.1",
"graphql-tools": "^7.0.4",
"husky": "^6.0.0",
"jest": "^26.6.3",
"jest-serial-runner": "^1.1.0",
"jest-transform-graphql": "^2.1.0",
"lint-staged": "^10.5.4",
"prettier": "^2.2.1",
"ts-jest": "^26.5.5",
"typescript": "^4.2.4"
},
"scripts": {
"gen-graphql-types": "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"
}
},
"dependencies": {
"big.js": "^6.1.0",
"cross-fetch": "^3.1.4",
"dataloader": "^2.0.0",
"graphql": "^15.5.0",
"graphql-request": "^3.4.0",
"node-abort-controller": "^2.0.0",
"react": "^17.0.2",
"react-test-renderer": "^17.0.2",
"swr": "^0.5.6",
"tslib": "^2.2.0"
},
"prettier": {
"singleQuote": true,
"printWidth": 90
}
}