This repository has been archived by the owner on Mar 9, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 1.98 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
{
"name": "@credix/credix-client",
"version": "0.1.0",
"description": "Client to interact with Credix marketplaces on Solana",
"main": "build/src/index.js",
"types": "build/src/index.d.ts",
"author": {
"name": "Credix Finance BV",
"email": "[email protected]",
"url": "https://credix.finance"
},
"repository": "https://github.com/credix-finance/credix-client",
"bugs": {
"url": "https://github.com/credix-finance/credix-client/issues",
"email": "[email protected]"
},
"homepage": "https://credix.finance",
"license": "MIT",
"scripts": {
"build": "tsc",
"lint": "yarn eslint src/",
"format": "yarn prettier --check src/",
"clean": "rm -rf build/",
"test": "NODE_PATH=./src/ nyc mocha",
"build-docs": "yarn typedoc src/index.ts --excludePrivate"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all",
"maintained node versions"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"dependencies": {
"@identity.com/solana-gateway-ts": "^0.8.1",
"@project-serum/anchor": "^0.20.1",
"@saberhq/anchor-contrib": "^1.12.32",
"@solana/spl-token": "^0.1.8",
"@solana/web3.js": "^1.31.0",
"big.js": "^6.1.1",
"bn.js": "^5.2.0",
"fraction.js": "^4.1.2"
},
"devDependencies": {
"@saberhq/chai-solana": "^1.12.36",
"@types/big.js": "^6.1.2",
"@types/chai": "^4.3.0",
"@types/mocha": "^9.1.0",
"@types/node": "^17.0.12",
"@types/react": "^17.0.38",
"@types/sinon": "^10.0.8",
"@typescript-eslint/eslint-plugin": "^5.10.0",
"@typescript-eslint/parser": "^5.10.0",
"chai": "^4.3.5",
"eslint": "^8.7.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-react": "^7.28.0",
"jsbi": "^4.1.0",
"mocha": "^9.2.0",
"nyc": "^15.1.0",
"prettier": "2.5.1",
"react": "^17.0.2",
"sinon": "^12.0.1",
"ts-node": "^10.4.0",
"typedoc": "^0.22.10",
"typescript": "^4.5.4"
},
"peerDependencies": {
"react": "^17.0.2"
},
"packageManager": "[email protected]"
}