-
Notifications
You must be signed in to change notification settings - Fork 286
/
package.json
38 lines (38 loc) · 913 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
33
34
35
36
37
38
{
"name": "arbitrum-tutorials",
"version": "1.0.0",
"description": "The Arbitrum Tutorials Monorepo",
"author": "Offchain Labs, Inc.",
"license": "Apache-2.0",
"private": "true",
"engines": {
"node": ">= 8.0.0",
"npm": "^6.0.0",
"yarn": "^1.0.0"
},
"scripts": {
"lint": "eslint .",
"format": "prettier './**/*.{js,json,md,yml,sol}' --write && yarn run lint --fix"
},
"devDependencies": {
"chai": "^4.3.4",
"eslint": "^8.15.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-mocha": "^9.0.0",
"eslint-plugin-prettier": "^4.0.0",
"prettier": "^2.3.2",
"prettier-plugin-solidity": "^1.0.0-beta.17"
},
"dependencies": {
"@arbitrum/sdk": "^4.0.1",
"@nomiclabs/hardhat-ethers": "^2.0.2",
"ethers": "^5.4.1",
"hardhat": "^2.2.0",
"dotenv": "^16.4.5"
},
"workspaces": {
"packages": [
"packages/*"
]
}
}