generated from adrianmcli/dapp-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 891 Bytes
/
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
{
"name": "dapp-boilerplate",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"format": "prettier --write . --ignore-path .gitignore",
"typechain": "typechain --target ethers-v5 --outDir ./contracts/types './contracts/*.json'"
},
"dependencies": {
"next": "^10.0.4",
"react": "^17.0.1",
"react-dom": "^17.0.1"
},
"devDependencies": {
"@typechain/ethers-v5": "^6.0.0",
"@types/node": "^14.14.17",
"@types/react": "^17.0.0",
"@typescript-eslint/eslint-plugin": "^4.11.1",
"@typescript-eslint/parser": "^4.11.1",
"eslint": "^7.16.0",
"eslint-config-prettier": "^7.1.0",
"ethers": "^5.0.31",
"prettier": "2.2.1",
"typechain": "^4.0.2",
"typescript": "^4.1.3"
}
}