forked from saber-hq/sail
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
102 lines (102 loc) · 2.84 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": "@saberhq/sail",
"version": "3.0.2",
"description": "Account caching and batched loading for React-based Solana applications.",
"keywords": [
"solana",
"blockchain",
"react",
"saber"
],
"author": "Ian Macalinao <[email protected]>",
"homepage": "https://sail.saber.so",
"license": "Apache-2.0",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"files": [
"dist/",
"src/"
],
"publishConfig": {
"access": "public"
},
"bugs": {
"url": "https://github.com/saber-hq/sail/issues",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "git+https://github.com/saber-hq/sail.git"
},
"scripts": {
"build": "tsc && tsc --project tsconfig.cjs.json",
"clean": "rm -fr dist/",
"lint": "eslint . --cache",
"lint:ci": "eslint . --max-warnings=0",
"lint:fix": "eslint . --fix",
"docs:generate": "typedoc --excludePrivate --includeVersion --out site/ts/ src/index.ts",
"prepare": "husky install"
},
"devDependencies": {
"@project-serum/anchor": "^0.20.1",
"@rushstack/eslint-patch": "^1.1.0",
"@saberhq/anchor-contrib": "^1.12.34",
"@saberhq/eslint-config-react": "^1.12.34",
"@saberhq/solana-contrib": "^1.12.34",
"@saberhq/token-utils": "^1.12.34",
"@saberhq/tsconfig": "^1.12.34",
"@saberhq/use-solana": "^1.12.34",
"@solana/web3.js": "^1.31.0",
"@types/lodash.chunk": "^4.2.6",
"@types/lodash.mapvalues": "^4.6.6",
"@types/lodash.zip": "^4.2.6",
"@types/node": "^17.0.10",
"@types/react": "^17.0.38",
"@types/react-dom": "^17.0.11",
"@types/retry": "^0.12.1",
"@yarnpkg/doctor": "^3.1.0",
"bn.js": "^5.2.0",
"eslint": "^8.7.0",
"eslint-import-resolver-node": "^0.3.6",
"eslint-plugin-import": "^2.25.4",
"husky": "^7.0.4",
"jsbi": "^4.1.0",
"lint-staged": "^12.2.2",
"prettier": "^2.5.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-query": "^3.34.8",
"typedoc": "^0.22.11",
"typescript": "^4.5.5"
},
"dependencies": {
"dataloader": "^2.0.0",
"eventemitter3": "^4.0.7",
"lodash.chunk": "^4.2.0",
"lodash.mapvalues": "^4.6.0",
"lodash.zip": "^4.2.0",
"retry": "^0.13.1",
"tiny-invariant": "^1.2.0",
"tslib": "^2.3.1",
"unstated-next": "^1.1.0",
"use-debounce": "^7.0.1"
},
"peerDependencies": {
"@project-serum/anchor": "*",
"@saberhq/anchor-contrib": "*",
"@saberhq/solana-contrib": "^1.7.1",
"@saberhq/token-utils": "^1.7.1",
"@saberhq/use-solana": "^1.7.1",
"@solana/web3.js": "^1.29.2",
"bn.js": "^5.2.0",
"jsbi": "^3 || ^4",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-query": "^3"
},
"packageManager": "[email protected]",
"lint-staged": {
"*.{ts,tsx}": "eslint --cache --fix",
"*.{json,js,jsx,html,css,md,yml,yaml}": "prettier --write"
}
}