forked from OffchainLabs/arbitrum-tutorials
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 730 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 730 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
{
"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 <= 20.11.1",
"npm": "^6.0.0",
"yarn": "^1.0.0"
},
"scripts": {
"lint": "eslint .",
"format": "prettier './**/*.{js,json,md,yml,sol}' --write && yarn run lint --fix"
},
"devDependencies": {
"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"
},
"workspaces": {
"packages": [
"packages/*"
]
}
}