-
Notifications
You must be signed in to change notification settings - Fork 311
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.36 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.36 KB
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
{
"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 .",
"prettier:format": "prettier './**/*.{js,json,md,sol,ts,yml}' --write && yarn run lint --fix",
"prettier:check": "prettier './**/*.{js,json,md,sol,ts,yml}' --check && yarn run lint",
"testAll": "tests/runAll.sh",
"setup-envs": "node scripts/setup-envs.js",
"update-custom-network": "node scripts/update-custom-network.js"
},
"devDependencies": {
"@offchainlabs/eslint-config-typescript": "^0.2.1",
"@offchainlabs/prettier-config": "0.2.1",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"chai": "^4.3.4",
"eslint": "^8.57.0",
"eslint-config-prettier": "^8.10.0",
"eslint-plugin-jest": "^27.9.0",
"eslint-plugin-mocha": "^9.0.0",
"eslint-plugin-prettier": "^4.2.0",
"prettier": "^2.8.8",
"prettier-plugin-solidity": "^1.4.2"
},
"dependencies": {
"@arbitrum/sdk": "^4.0.1",
"@nomiclabs/hardhat-ethers": "^2.2.3",
"ethers": "^5.7.2",
"hardhat": "^2.13.1",
"dotenv": "^16.4.5"
},
"workspaces": {
"packages": [
"packages/*"
]
}
}