forked from 0xSpaceShard/starknet-hardhat-example
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 971 Bytes
/
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
{
"name": "cairo",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "npx hardhat --network localhost test",
"lint": "eslint $(git ls-files '*.ts')",
"format": "prettier-eslint --list-different --write $(git ls-files '*.ts')"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.5",
"@shardlabs/starknet-hardhat-plugin": "0.8.0-alpha.0",
"@types/chai": "^4.2.22",
"@types/elliptic": "^6.4.14",
"@types/mocha": "^9.0.0",
"@types/node": "^16.11.10",
"@typescript-eslint/eslint-plugin": "^5.8.1",
"@typescript-eslint/parser": "^5.8.1",
"chai": "^4.3.4",
"dotenv": "^16.0.1",
"eslint": "^8.5.0",
"ethers": "^5.4.6",
"prettier-eslint-cli": "^7.0.0",
"ts-node": "^10.4.0",
"typescript": "^4.5.2"
},
"dependencies": {
"@toruslabs/starkware-crypto": "^1.1.0",
"axios": "^0.24.0",
"hardhat": "2.9.9"
}
}