-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.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
{
"name": "ethereum-rock-paper-scissors",
"version": "1.0.0",
"description": "Popular game rock-paper-scissors powered by Solidity and Blockchain",
"main": "index.js",
"scripts": {
"setup-ethereum-node": "npx hardhat node",
"interact": "npx hardhat run src/interact/interact.ts",
"local-interact": "npx hardhat run --network localhost src/interact/interact.ts",
"deploy": "npx hardhat run src/deploy/contract-deploy.ts",
"local-deploy": "npx hardhat run --network localhost src/deploy/contract-deploy.ts",
"test": "jest",
"init-env": "cp .env.test .env"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Ferum-bot/Ethereum-Rock-Paper-Scissors.git"
},
"keywords": [
"Solidity",
"Smart-Contracts",
"TypeScript",
"Ethereum",
"Tests",
"Integration-Tests"
],
"author": "Ferum-bot",
"license": "ISC",
"bugs": {
"url": "https://github.com/Ferum-bot/Ethereum-Rock-Paper-Scissors/issues"
},
"homepage": "https://github.com/Ferum-bot/Ethereum-Rock-Paper-Scissors#readme",
"devDependencies": {
"@jest/globals": "^29.3.1",
"@types/jest": "^29.2.3",
"jest": "^29.3.1",
"ts-jest": "^29.0.3",
"typescript": "^4.8.4"
},
"dependencies": {
"@abraham/reflection": "^0.11.0",
"@ethersproject/abstract-provider": "^5.7.0",
"@nomiclabs/hardhat-ethers": "^2.1.1",
"@openzeppelin/contracts": "^4.7.3",
"@types/node": "^18.11.3",
"dotenv": "^16.0.3",
"ethers": "^5.7.1",
"ganache-cli": "^6.12.2",
"hardhat": "^2.11.2",
"inversify": "^6.0.1",
"node-fetch": "^3.2.10",
"reflect-metadata": "^0.1.13",
"ts-node": "^10.9.1",
"typescript": "^4.8.4"
}
}