-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 906 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 906 Bytes
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
{
"name": "token-buyback",
"version": "1.0.0",
"description": "Smart contract that allows buyback of an MRC20 token",
"scripts": {
"compile": "npx hardhat compile",
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint"
},
"author": "PyroPets Developers",
"license": "MIT",
"dependencies": {
"@fontsource/vt323": "^5.0.2",
"@openzeppelin/contracts": "^4.8.3",
"axios": "^1.4.0"
},
"devDependencies": {
"@metrixcoin/metrilib": "^1.5.17-beta",
"@types/node": "18.14.2",
"@types/react": "18.0.28",
"@types/react-dom": "18.0.11",
"eslint": "8.35.0",
"eslint-config-next": "13.2.3",
"ethers": "^6.4.1",
"hardhat": "^2.14.0",
"next": "13.2.3",
"react": "18.2.0",
"react-dom": "18.2.0",
"semantic-ui-css": "^2.5.0",
"semantic-ui-react": "^2.1.4",
"typescript": "4.9.5"
}
}