-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
54 lines (54 loc) · 1.77 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
{
"name": "gelato-native-oracle-nft-example",
"version": "1.0.0",
"description": "Gelato Native Oracle One Dollar NFT Mint Example",
"scripts": {
"build": "yarn install && yarn compile && npx tsc",
"clean": "yarn hardhat clean && rm -rf dist",
"compile": "npx hardhat compile --force",
"deploy": "npx hardhat deploy",
"test": "npx hardhat test",
"format": "prettier --write '*/**/*.*{js,json,md,ts}'",
"format:check": "prettier --check '*/**/*.*{js,json,md,ts}'",
"lint": "eslint --cache . && yarn lint:sol",
"lint:ts": "eslint -c .eslintrc.json --ext \"**/*.ts\" \"**/*.test.ts\"",
"lint:sol": "solhint 'contracts/**/*.sol'",
"postinstall": "yarn husky install"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@gelatonetwork/gelato-native-oracle-sdk": "1.0.0",
"@openzeppelin/contracts": "5.0.2",
"@pythnetwork/pyth-sdk-solidity": "3.1.0"
},
"devDependencies": {
"@nomicfoundation/hardhat-ethers": "3.0.6",
"@tsconfig/recommended": "1.0.7",
"@typechain/ethers-v6": "0.5.1",
"@typechain/hardhat": "9.1.0",
"@typescript-eslint/eslint-plugin": "6.6.0",
"@typescript-eslint/parser": "6.6.0",
"dotenv": "16.4.5",
"eslint": "8.48.0",
"eslint-config-prettier": "9.0.0",
"eslint-plugin-prettier": "4.2.1",
"ethers": "6.13.2",
"hardhat": "2.22.8",
"hardhat-deploy": "0.12.4",
"husky": "8.0.3",
"lint-staged": "14.0.1",
"prettier": "2.8.8",
"prettier-plugin-solidity": "1.1.3",
"solhint": "3.6.2",
"solhint-plugin-prettier": "0.0.5",
"ts-node": "10.9.2",
"typechain": "8.3.2",
"typescript": "5.5.4"
},
"lint-staged": {
"*.*{js,json,md,ts,sol,yml,yaml}": "prettier --write",
"*.*{ts,js}": "eslint -c .eslintrc.json"
}
}