-
Notifications
You must be signed in to change notification settings - Fork 77
/
Copy pathpackage.json
76 lines (76 loc) · 2.63 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
{
"name": "@fuel-bridge/solidity-contracts",
"version": "0.5.0",
"description": "The Fuel v2 Solidity smart contracts.",
"license": "APACHE-2.0",
"files": [
"typechain",
"contracts",
"artifacts",
"dist"
],
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"typings": "dist/index.d.ts",
"main": "dist/index.js",
"scripts": {
"build": "run-s clean compile build:exports",
"build:exports": "tsup",
"clean": "pnpm hardhat clean",
"compile": "pnpm hardhat compile --show-stack-traces",
"coverage": "pnpm run build && pnpm hardhat coverage --temp artifacts --network hardhat",
"check": "pnpm solhint \"contracts/**/*.sol\"",
"node": "pnpm hardhat node --network hardhat",
"start-mining": "pnpm hardhat run --no-compile --network localhost scripts/startAutoMining.ts",
"serve-deployments": "pnpm ts-node scripts/serveDeployments.ts",
"test": "pnpm hardhat test",
"test-no-compile": "pnpm hardhat test --no-compile",
"test-parallel": "pnpx mocha 'test/**/*.ts' --recursive --parallel --require hardhat/register",
"prettier": "prettier --write --plugin=prettier-plugin-solidity 'contracts/**/*.sol'",
"lint": "prettier --list-different --plugin=prettier-plugin-solidity 'contracts/**/*.sol'"
},
"devDependencies": {
"@fuel-ts/merkle": "0.21.2",
"@inquirer/prompts": "5.3.8",
"@nomicfoundation/hardhat-chai-matchers": "2.0.4",
"@nomicfoundation/hardhat-ethers": "3.0.5",
"@nomicfoundation/hardhat-network-helpers": "1.0.10",
"@nomicfoundation/hardhat-verify": "1.1.1",
"@openzeppelin/contracts": "4.8.3",
"@openzeppelin/contracts-upgradeable": "4.8.3",
"@openzeppelin/hardhat-upgrades": "3.0.4",
"@typechain/ethers-v6": "0.5.1",
"@typechain/hardhat": "9.1.0",
"@types/chai": "4.3.4",
"@types/cors": "2.8.17",
"@types/express": "4.17.14",
"@types/lodash": "4.14.202",
"@types/mocha": "10.0.0",
"@types/node": "18.11.9",
"@typescript-eslint/eslint-plugin": "5.43.0",
"@typescript-eslint/parser": "5.43.0",
"chai": "4.3.7",
"cors": "2.8.5",
"dotenv": "16.0.3",
"ethers": "6.13.1",
"express": "4.18.2",
"fuels": "0.94.0",
"hardhat": "2.20.1",
"hardhat-deploy": "0.12.4",
"inquirer": "10.1.8",
"lodash": "4.17.21",
"markdownlint": "0.26.2",
"markdownlint-cli": "0.32.2",
"node-fetch": "2.6.7",
"npm-run-all": "4.1.5",
"prettier-plugin-solidity": "1.1.3",
"solc": "0.8.17",
"solhint": "3.3.7",
"solidity-coverage": "0.8.5",
"ts-generator": "0.1.1",
"ts-node": "10.9.1",
"tsup": "7.2.0",
"typechain": "8.3.2",
"typescript": "4.9.3"
}
}