-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.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
{
"name": "rock-paper-scissor",
"private": true,
"version": "0.1.0",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"test": "truffle test",
"deploy": "truffle compile --all && truffle migrate",
"compile": "truffle compile --all && truffle run abigen && yarn typechain",
"typechain": "typechain --out-dir contracts-ts --target=ethers-v5 'abi/*.json'"
},
"dependencies": {
"@chakra-ui/react": "^2.4.1",
"@emotion/react": "^11.10.5",
"@emotion/styled": "^11.10.5",
"@rainbow-me/rainbowkit": "^0.7.4",
"@typechain/ethers-v5": "^10.1.1",
"ethers": "^5.0.0",
"framer-motion": "^7.6.7",
"next": "^12.1.6",
"react": "^18.1.0",
"react-dom": "^18.1.0",
"typechain": "^8.1.1",
"urql": "^3.0.3",
"wagmi": "^0.7.5"
},
"devDependencies": {
"@darienmh/truffle-plugin-abigen": "^0.0.3",
"@graphprotocol/graph-cli": "^0.36.1",
"@openzeppelin/contracts": "^4.8.0",
"@openzeppelin/test-helpers": "^0.5.16",
"@types/node": "^17.0.35",
"@types/react": "^18.0.9",
"chai": "^4.3.7",
"eslint": "^8.15.0",
"eslint-config-next": "^12.1.6",
"eth-balance": "^0.0.5",
"truffle": "^5.6.5",
"typescript": "^4.7.2",
"uuid": "^9.0.0"
}
}