-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 2.67 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
{
"name": "simple-net-art-diagram",
"version": "1.1.1",
"description": "The Simple Net Art Diagram: the simplest possible net art diagram.",
"main": "dist/index.js",
"files": [
"dist"
],
"author": "Tim Whidden <[email protected]>",
"license": "MIT",
"engines": {
"node": ">=16.0.0"
},
"homepage": "https://github.com/twhid/simple-net-art-diagram#readme",
"repository": {
"type": "git",
"url": "[email protected]:twhid/simple-net-art-diagram.git"
},
"devDependencies": {
"@ethersproject/abi": "^5.4.7",
"@ethersproject/bytes": "^5.0.0",
"@ethersproject/providers": "^5.4.7",
"@nomicfoundation/hardhat-chai-matchers": "^1.0.1",
"@nomicfoundation/hardhat-network-helpers": "^1.0.2",
"@nomicfoundation/hardhat-toolbox": "^1.0.1",
"@nomiclabs/hardhat-ethers": "^2.0.0",
"@nomiclabs/hardhat-etherscan": "^3.0.0",
"@openzeppelin/contracts": "^4.7.0",
"@typechain/ethers-v5": "^10.1.0",
"@typechain/hardhat": "^6.1.2",
"@types/chai": "^4.2.0",
"@types/mocha": "^9.1.0",
"@types/node": "^18.7.14",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"chai": "^4.3.6",
"dotenv": "^16.0.1",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.4.1",
"eslint-plugin-promise": "^5.2.0",
"ethers": "^5.6.9",
"hardhat": "^2.10.0",
"hardhat-gas-reporter": "^1.0.8",
"prettier": "^2.7.1",
"prettier-plugin-solidity": "^1.0.0-beta.13",
"solidity-coverage": "^0.7.21",
"truffle": "^5.5.20",
"ts-loader": "^9.4.1",
"ts-node": "^10.9.1",
"typechain": "^8.1.0",
"typescript": "^4.8.2",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0"
},
"scripts": {
"build": "webpack && node scripts/build.js",
"hh": "TS_NODE_TRANSPILE_ONLY=1 hardhat",
"compile": "TS_NODE_TRANSPILE_ONLY=1 hardhat compile",
"dashboard": "truffle dashboard",
"deploy": "TS_NODE_TRANSPILE_ONLY=1 hardhat run ./scripts/deploy.ts --network truffle-dashboard",
"deploy:local": "CHAIN_ID=31337 TS_NODE_TRANSPILE_ONLY=1 hardhat run ./scripts/deploy.ts --network localhost",
"deploy:goe": "CHAIN_ID=5 npm run deploy",
"test": "TS_NODE_TRANSPILE_ONLY=1 npm run deploy:local && NODE_NO_WARNINGS=1 hardhat test",
"test:gas": "REPORT_GAS=1 TS_NODE_TRANSPILE_ONLY=1 hardhat test \"test/contract.ts\""
}
}