-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 2.18 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
{
"name": "@safient/contracts",
"version": "0.1.19-alpha",
"description": "JavaScript SDK to manage and interact with the safe claims on Safient protocol.",
"keywords": [
"Web3",
"Ethereum",
"Safient",
"IPFS",
"Crypto"
],
"scripts": {
"prettier": "prettier --write 'contracts/**/*.sol'",
"clean": "hardhat clean",
"compile": "hardhat compile",
"chain": "hardhat node",
"deploy": "hardhat run scripts/deploy.js",
"deploy:sdk": "npm run deploy && npm run build",
"test:contract": "hardhat test --network hardhat",
"test:sdk": "npm run deploy:sdk && mocha test-sdk/claims.js --timeout 100000",
"test": "npm run test:contract && npm run test:sdk",
"generate": "hardhat generate",
"account": "hardhat account",
"build": "tsc -p tsconfig.json",
"build:docs": "cd docs && npm install && npm run build",
"serve:docs": "npm run build:docs && cd docs && npm run start",
"deploy:docs": "npm run build:docs && cd docs && npx docusaurus deploy"
},
"repository": {
"type": "git",
"url": "git+https://github.com/safient/safient-contract-js"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"prepublish": "tsc",
"author": "Safient <[email protected]>",
"files": [
"dist"
],
"devDependencies": {
"@types/fs-extra": "^9.0.13",
"@types/node": "^15.6.1",
"chalk": "^2.4.2",
"prettier-plugin-solidity": "*",
"typedoc": "^0.22.4",
"typescript": "^4.2.4"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"@ethersproject/address": "^5.2.0",
"@ethersproject/bignumber": "^5.2.0",
"@ethersproject/contracts": "^5.0.5",
"@ethersproject/logger": "^5.2.0",
"@ethersproject/providers": "^5.4.4",
"@ethersproject/units": "^5.2.0",
"@nomiclabs/hardhat-ethers": "^2.0.2",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@textile/hub": "^6.1.0",
"bip39": "2.5.0",
"chai": "^4.3.4",
"chai-as-promised": "^7.1.1",
"did-jwt": "^5.6.2",
"ethereum-waffle": "^3.3.0",
"ethereumjs-wallet": "0.6.5",
"ethers": "^5.4.3",
"fs-extra": "^10.0.0",
"hardhat": "^2.5.0",
"qrcode-terminal": "^0.12.0",
"ramda": "^0.27.1"
}
}