forked from filecoin-project/raas-starter-kit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 2.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
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
{
"name": "FEVM-Hardhat-Kit",
"version": "1.0.0",
"description": "",
"scripts": {
"compile": "hardhat compile",
"test": "hardhat test tests/*.js --network hardhat",
"test-service": "mocha --exit ./api/tests/service.test.js",
"test-lighthouse": "mocha --exit ./api/tests/lighthouse.test.js",
"test-edge": "mocha --exit ./api/tests/edge.test.js",
"lint": "solhint 'contracts/*.sol'",
"lint:fix": "solhint 'contracts/**/*.sol' --fix",
"format": "prettier --write .",
"coverage": "hardhat coverage --solcoverjs ./.solcover.js",
"fuzzing": "docker run -it --rm -v $PWD:/src trailofbits/eth-security-toolbox",
"chain": "hardhat node --network hardhat --no-deploy",
"start": "webpack serve --open",
"service": "node api/service.js",
"deploy-calibration": "npx hardhat deploy --network calibrationnet"
},
"license": "MIT",
"devDependencies": {
"@nomiclabs/hardhat-etherscan": "^3.0.0",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@types/chai": "^4.3.4",
"@types/mocha": "^10.0.1",
"@types/node": "^18.11.15",
"chai": "^4.3.7",
"cids": "^1.1.9",
"ethereum-waffle": "^3.4.0",
"ethers": "^5.5.1",
"hardhat": "^2.17.3",
"hardhat-contract-sizer": "^2.4.0",
"hardhat-deploy": "^0.9.29",
"hardhat-gas-reporter": "^1.0.7",
"prettier": "^2.4.1",
"prettier-plugin-solidity": "^1.0.0-beta.19",
"solhint": "^3.3.6",
"solidity-coverage": "^0.8.1"
},
"dependencies": {
"@glif/filecoin-address": "^2.0.18",
"@lighthouse-web3/sdk": "^0.2.7",
"@nomicfoundation/hardhat-chai-matchers": "^1.0.0",
"@nomicfoundation/hardhat-network-helpers": "^1.0.0",
"@nomicfoundation/hardhat-toolbox": "^2.0.0",
"@nomiclabs/hardhat-ethers": "^2.2.3",
"@openzeppelin/contracts": "^4.8.3",
"@typechain/hardhat": "^6.1.2",
"@zondax/filecoin-solidity": "^2.0.0-beta.1",
"babel-eslint": "^10.1.0",
"chai-http": "^4.4.0",
"cid-tool": "^3.0.0",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"express": "^4.18.2",
"hardhat-deploy-ethers": "^0.3.0-beta.13",
"html-webpack-plugin": "^5.5.3",
"multer": "^1.4.5-lts.1",
"sinon": "^15.2.0",
"ts-node": "^10.9.1",
"typescript": "^4.9.4",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1"
},
"mocha": {
"timeout": 10000000
}
}