-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 815 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 815 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
{
"name": "ethernaut-cli-monorepo",
"version": "1.2.0",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"chain": "packages/ethernaut-cli/ethernaut network node --fork 'none' --port 8545",
"build": "lerna run build",
"compile": "lerna run compile",
"publish": "lerna publish",
"lint": "eslint",
"format": "prettier --write 'packages/**/*.js'",
"test": "npm run test --workspaces"
},
"devDependencies": {
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-mocha": "^10.3.0",
"eslint-plugin-prettier": "^5.1.3",
"husky": "^9.0.11",
"lerna": "^8.1.2",
"lint-staged": "^15.2.2",
"prettier": "^3.2.5"
},
"dependencies": {
"axios": "^1.8.4",
"echomd": "^0.2.3",
"node-fetch": "^2.7.0"
}
}