-
Notifications
You must be signed in to change notification settings - Fork 29
/
package.json
40 lines (40 loc) · 1.35 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
{
"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')",
"format-check": "prettier-eslint $(git ls-files '*.ts') --list-different",
"check-executable": "./util_scripts/check_executable.sh",
"link-plugin": "./util_scripts/link_master_plugin.sh",
"check-all-tests-executed": "grep -r 'it\\.only(' $(git ls-files '*.ts') && echo 'Error: There are files with it.only(...)' && exit 2 || true",
"check-config-file": "npx hardhat --typecheck --config hardhat.config.ts"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.5",
"@shardlabs/starknet-hardhat-plugin": "0.8.0-alpha.5",
"@types/chai": "^4.2.22",
"@types/elliptic": "^6.4.14",
"@types/mocha": "^10.0.0",
"@types/node": "^18.0.0",
"@typescript-eslint/eslint-plugin": "^5.60.0",
"@typescript-eslint/parser": "^5.60.0",
"chai": "^4.3.4",
"dotenv": "^16.0.1",
"eslint": "^8.43.0",
"ethers": "^5.4.6",
"prettier-eslint-cli": "^7.0.0",
"ts-node": "^10.4.0",
"typescript": "^5.0.0"
},
"dependencies": {
"axios": "^1.6.5",
"hardhat": "2.19.4",
"starknet": "^4.22.0"
}
}