-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.3 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
{
"name": "quantum-sdk",
"version": "2.0.1",
"description": "SDK to interact seamlessly with quantum node",
"main": "dist/src/quantum.js",
"scripts": {
"build": "tsc",
"start": "tsc && node dist/src/index.js",
"test": "nyc mocha --require ts-node/register test/*_test.ts",
"test_e2e": "tsc && node dist/test/e2e.js",
"node:sepolia": "cd contracts; npx --no-install hardhat node --fork https://rpc.ankr.com/eth_sepolia --fork-block-number 6338972 --port 8545"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@nomicfoundation/hardhat-ethers": "^3.0.5",
"@nomicfoundation/hardhat-toolbox": "^5.0.0",
"@nomicfoundation/hardhat-verify": "^2.0.9",
"@openzeppelin/hardhat-upgrades": "^3.1.0",
"@types/chai": "^4.3.16",
"@types/chai-as-promised": "^7.1.8",
"@types/mocha": "^10.0.6",
"chai": "4.2.0",
"chai-as-promised": "^7.1.2",
"hardhat": "^2.22.3",
"mocha": "^10.4.0",
"nock": "^13.5.4",
"prettier": "^3.3.2",
"prettier-plugin-solidity": "^1.3.1",
"typescript": "^5.4.5"
},
"dependencies": {
"@openzeppelin/contracts-upgradeable": "^5.0.1",
"axios": "^1.6.8",
"big-integer": "^1.6.52",
"borsh": "^2.0.0",
"dotenv": "^16.4.4",
"ethers": "^6.12.1",
"nyc": "^17.0.0",
"ts-node": "^10.9.2"
}
}