-
Notifications
You must be signed in to change notification settings - Fork 72
/
Copy pathpackage.json
63 lines (63 loc) · 2.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
53
54
55
56
57
58
59
60
61
62
63
{
"name": "sx",
"version": "1.0.0",
"description": "Cairo 1 implementation of the Snapshot X Protocol",
"repository": "https://github.com/snapshot-labs/sx-starknet.git",
"author": "Snapshot Labs",
"license": "MIT",
"main": "index.js",
"scripts": {
"format:ts": "eslint . --ext .ts --fix",
"format:json": "json-format ./tests/data/*.json",
"test:stark-sig-auth": "bash './scripts/stark-sig-auth-test.sh'",
"test:eth-sig-auth": "bash './scripts/eth-sig-auth-test.sh'",
"test:eth-tx-auth": "bash './scripts/eth-tx-auth-test.sh'",
"test:l1-execution": "bash './scripts/l1-avatar-execution-test.sh'",
"test-ts": "yarn test:stark-sig-auth && yarn test:eth-sig-auth && yarn test:eth-tx-auth && yarn test:l1-execution"
},
"devDependencies": {
"@gnosis.pm/zodiac": "^4.0.3",
"@nomicfoundation/hardhat-chai-matchers": "^2.0.0",
"@nomicfoundation/hardhat-ethers": "^3.0.6",
"@nomicfoundation/hardhat-foundry": "^1.1.1",
"@nomicfoundation/hardhat-ignition": "^0.15.5",
"@nomicfoundation/hardhat-ignition-ethers": "^0.15.5",
"@nomicfoundation/hardhat-network-helpers": "^1.0.11",
"@nomicfoundation/hardhat-toolbox": "^5.0.0",
"@nomicfoundation/hardhat-verify": "^2.0.0",
"@nomicfoundation/ignition-core": "^0.15.5",
"@openzeppelin/contracts": "^5.0.2",
"@openzeppelin/hardhat-upgrades": "^3.2.0",
"@safe-global/safe-contracts": "^1.4.1-build.0",
"@snapshot-labs/sx": "^0.1.0-beta.46",
"@typechain/ethers-v6": "^0.5.1",
"@typechain/hardhat": "^9.1.0",
"@types/mocha": "^10.0.7",
"@types/node": "^20.4.5",
"@types/sinon-chai": "^3.2.9",
"@typescript-eslint/eslint-plugin": "^6.2.1",
"@typescript-eslint/parser": "^6.2.1",
"axios": "^1.5.0",
"chai": "4",
"concurrently": "^7.0.0",
"dotenv": "^16.3.1",
"eslint": "^8.46.0",
"eslint-plugin-prettier": "^5.0.0",
"ethers": "^6.13.2",
"fs": "^0.0.1-security",
"hardhat": "^2.17.2",
"hardhat-gas-reporter": "^1.0.8",
"json-format-cli": "^1.1.1",
"micro-starknet": "^0.2.3",
"prettier": "^3.0.0",
"solidity-coverage": "^0.8.12",
"starknet": "^6.11.0",
"ts-node": "^10.9.1",
"typechain": "^8.3.2",
"typescript": "^5.1.6",
"wait-on": "^7.0.1"
},
"dependencies": {
"starknet-devnet": "^0.1.2"
}
}