-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.68 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
{
"name": "token-contract",
"version": "1.0.0",
"author": "Codyfight",
"license": "MIT",
"type": "module",
"repository": "https://github.com/codyfight/token-contract",
"keywords": [
"codyfight",
"token",
"contract",
"arbitrum",
"ctok"
],
"description": "CTOK fuels Codyfight's in-game economy, facilitating asset exchange and rewarding players. It operates on the Arbitrum blockchain for in-game transactions and broader crypto use.",
"main": "index.js",
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"contract-test": "clear && hardhat test",
"contract-network": "npx hardhat node",
"contract-deploy": "rm -rf artifacts && rm -rf cache && npm run contract-test && npx hardhat run --network prod scripts/deploy.js",
"contract-deploy:local": "rm -rf artifacts && rm -rf cache && npm run contract-test && npx hardhat run --network localhost scripts/deploy.js"
},
"devDependencies": {
"@nomicfoundation/hardhat-chai-matchers": "^1.0.0",
"@nomicfoundation/hardhat-network-helpers": "^1.0.0",
"@nomicfoundation/hardhat-toolbox": "^2.0.0",
"@nomiclabs/hardhat-ethers": "^2.2.3",
"@typechain/ethers-v5": "^10.1.0",
"@typechain/hardhat": "^6.1.2",
"@types/chai": "^4.3.5",
"@types/mocha": "^10.0.1",
"@types/node": ">=12.0.0",
"chai": "^4.3.7",
"eslint": "^8.38.0",
"eslint-plugin-unused-imports": "^2.0.0",
"ethers": "^5.0.0",
"hardhat": "^2.13.1",
"hardhat-gas-reporter": "^1.0.8",
"mocha": "^10.2.0",
"prettier-plugin-solidity": "^1.3.1",
"solidity-coverage": "^0.8.0",
"typechain": "^8.1.0"
},
"dependencies": {
"dotenv": "^16.0.3",
"inquirer": "^9.2.12"
}
}