This repository has been archived by the owner on Nov 8, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
75 lines (75 loc) · 2.85 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
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "nitro-smart-contract-wallet",
"version": "0.0.1",
"description": "A smart contract wallet that harnesses the power of nitro channels.",
"main": "index.js",
"repository": "https://github.com/statechannels/nitro-smart-contract-wallet.git",
"author": "magmo",
"license": "MIT",
"scripts": {
"test": "yarn hardhat test",
"build": "yarn hardhat compile && yarn hardhat typechain && yarn tsc",
"lint:check": "eslint . --ext ts,tsx",
"lint:write": "eslint . --ext ts,tsx --fix",
"prepack": "yarn build",
"start": "yarn vite",
"start-local": "yarn vite --mode hardhat",
"deploy:a": "npx hardhat run --network a scripts/deploy.ts",
"chain:a": "yarn hardhat node",
"chain:b": "IS_DESTINATION=true yarn hardhat node --port 8546",
"deploy:b": "npx hardhat run --network b scripts/deploy.ts",
"deploy-and-start-local": "yarn deploy:a && yarn deploy:b && yarn start-local",
"deploy:scroll": "npx hardhat run --network scroll scripts/deploy.ts",
"deploy:poly": "npx hardhat run --network polygonzkevm scripts/deploy.ts",
"topup:scroll": "npx hardhat run --network scroll scripts/topup.ts",
"topup:poly": "npx hardhat run --network polygonzkevm scripts/topup.ts",
"topup:all": "yarn topup:scroll && yarn topup:poly"
},
"packageManager": "[email protected]",
"devDependencies": {
"@nomicfoundation/hardhat-chai-matchers": "^2.0.0",
"@nomicfoundation/hardhat-ethers": "^3.0.4",
"@nomicfoundation/hardhat-network-helpers": "^1.0.0",
"@nomicfoundation/hardhat-toolbox": "^3.0.0",
"@nomicfoundation/hardhat-verify": "^1.0.0",
"@statechannels/nitro-protocol": "^2.0.1-alpha.5",
"@typechain/ethers-v5": "^10.1.0",
"@typechain/ethers-v6": "^0.4.0",
"@typechain/hardhat": "^8.0.0",
"@types/chai": "^4.2.0",
"@types/chai-as-promised": "^7.1.6",
"@types/mocha": ">=9.1.0",
"@types/node": ">=16.0.0",
"@types/react-dom": "^18.2.13",
"@typescript-eslint/eslint-plugin": "^6.4.0",
"@typescript-eslint/parser": "^6.7.5",
"@vitejs/plugin-react": "^4.1.0",
"chai": "^4.2.0",
"dotenv": "^16.3.1",
"eslint": "^8.0.1",
"eslint-config-prettier": "^9.0.0",
"eslint-config-standard-with-typescript": "^39.1.1",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-n": "^15.0.0 || ^16.0.0 ",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-promise": "^6.0.0",
"ethers": "^6.4.0",
"hardhat": "^2.14.0",
"hardhat-gas-reporter": "^1.0.8",
"prettier": "^3.0.3",
"solidity-coverage": "^0.8.0",
"ts-node": ">=8.0.0",
"typechain": "^8.1.0",
"typescript": ">=4.5.0",
"vite": "^4.4.5"
},
"dependencies": {
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@mui/icons-material": "^5.14.14",
"@mui/material": "^5.14.13",
"blo": "^1.1.1",
"react": "^18.2.0",
"react-dom": "^18.2.0"
}
}