-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
52 lines (52 loc) · 1.28 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
{
"name": "hardhat-ethernal",
"version": "3.3.0",
"description": "Ethernal Hardhat plugin",
"repository": "github:tryethernal/hardhat-ethernal",
"author": "Antoine de Chevigné",
"license": "MIT",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"keywords": [
"ethereum",
"smart-contracts",
"hardhat",
"ethernal"
],
"scripts": {
"lint:fix": "tslint --fix --config tslint.json --project tsconfig.json",
"lint": "tslint --config tslint.json --project tsconfig.json",
"build": "tsc",
"watch": "tsc -w"
},
"files": [
"dist/",
"LICENSE",
"README.md"
],
"dependencies": {
"@firebase/firestore-types": "2.2.0",
"axios": "^0.27.2",
"firebase": "9.9.4"
},
"devDependencies": {
"@firebase/firestore-types": "2.2.0",
"@nomicfoundation/hardhat-ethers": "^3.0.4",
"@types/fs-extra": "^5.0.4",
"@types/mocha": "^9.1.0",
"@types/node": "^8.10.38",
"ethers": "^6.7.1",
"hardhat": "^2.17.1",
"mocha": "^9.2.2",
"prettier": "2.0.5",
"ts-node": "^8.1.0",
"tslint": "^5.16.0",
"tslint-config-prettier": "^1.18.0",
"tslint-plugin-prettier": "^2.0.1",
"typescript": "^4.0.3"
},
"peerDependencies": {
"@nomicfoundation/hardhat-ethers": "^3.0.4",
"hardhat": "^2.17.1"
}
}