forked from flare-foundation/flare-hardhat-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 3.12 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 3.12 KB
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": "flare-hardhat-starter",
"main": "index.js",
"repository": "https://github.com/flare-foundation/flare-hardhat-starter",
"license": "MIT",
"scripts": {
"build": "nest build",
"start": "nest start",
"start:dev": "nest start --watch",
"start:debug": "nest start --debug --watch",
"start:prod": "node dist/main",
"-----Linting-----": "echo \"Linting scripts\"",
"lint:fix": "yarn lint:fix-typescript && yarn lint:fix-solidity",
"lint:check": "yarn lint:check-typescript && yarn lint:check-solidity",
"lint:fix-typescript": "eslint \"{scripts,test}/**/*.ts\" --fix",
"lint:fix-solidity": "solhint \"contracts/**/*.sol\" --fix",
"lint:check-typescript": "eslint \"{scripts,test}/**/*.ts\"",
"lint:check-solidity": "solhint \"contracts/**/*.sol\"",
"-----Formatting-----": "echo \"Formatting scripts\"",
"format:fix": "yarn format:fix-typescript && yarn format:fix-solidity",
"format:check": "yarn format:check-typescript && yarn format:check-solidity",
"format:check-typescript": "prettier --check \"scripts/**/*.ts\" ",
"format:fix-typescript": "prettier --write \"scripts/**/*.ts\" ",
"format:check-solidity": "prettier --check --plugin=prettier-plugin-solidity \"contracts/**/*.sol\"",
"format:fix-solidity": "prettier --write --plugin=prettier-plugin-solidity \"contracts/**/*.sol\"",
"-----Testing-----": "echo \"Testing scripts\"",
"test": ""
},
"devDependencies": {
"@eslint/js": "^9.24.0",
"@nomicfoundation/hardhat-chai-matchers": "^2.0.0",
"@nomicfoundation/hardhat-ethers": "^3.0.0",
"@nomicfoundation/hardhat-ignition": "^0.15.0",
"@nomicfoundation/hardhat-ignition-ethers": "^0.15.0",
"@nomicfoundation/hardhat-network-helpers": "^1.0.0",
"@nomicfoundation/hardhat-toolbox": "^5.0.0",
"@nomicfoundation/hardhat-verify": "^2.0.0",
"@nomiclabs/hardhat-truffle5": "^2.0.7",
"@nomiclabs/hardhat-web3": "^2.0.1",
"@tenderly/hardhat-tenderly": "^2.5.2",
"@typechain/ethers-v6": "^0.5.0",
"@typechain/hardhat": "^9.0.0",
"@typechain/truffle-v5": "^8.0.7",
"@types/chai": "^4.2.0",
"@types/mocha": ">=9.1.0",
"@types/node": ">=18.0.0",
"chai": "^4.2.0",
"dotenv": "^16.4.7",
"eslint": "^9.17.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-prettier": "^5.0.0",
"hardhat-gas-reporter": "^1.0.8",
"prettier": "^3.0.0",
"prettier-plugin-solidity": "^1.4.2",
"solidity-coverage": "^0.8.0",
"ts-node": ">=8.0.0",
"typechain": "^8.3.0",
"typescript": ">=4.5.0",
"typescript-eslint": "^8.19.1"
},
"dependencies": {
"@chainlink/contracts": "^1.4.0",
"@flarenetwork/flare-periphery-contract-artifacts": "0.1.37",
"@flarenetwork/flare-periphery-contracts": "0.1.37",
"@flarenetwork/ftso-adapters": "^0.0.1-rc.1",
"@openzeppelin/contracts": "^5.2.0",
"@pythnetwork/pyth-sdk-solidity": "^4.2.0",
"@typescript-eslint/eslint-plugin": "^7.3.1",
"@typescript-eslint/parser": "^7.3.1",
"ethers": "^6.4.0",
"hardhat": "^2.22.18",
"solhint": "^4.5.2"
},
"packageManager": "yarn@1.22.22"
}