forked from trufflesuite/truffle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.23 KB
/
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
39
40
41
{
"private": true,
"scripts": {
"bootstrap": "npx lerna bootstrap",
"prepare": "lerna run prepare --stream --concurrency=1 && husky install",
"publish-release": "./scripts/publish-release.sh",
"publish-dist-tag": "./scripts/publish-dist-tag.sh",
"prepare-release": "./scripts/prepare-release.sh",
"test": "lerna run test --stream --concurrency=1 -- --colors",
"ci": "./scripts/ci.sh",
"geth": "./scripts/geth.sh",
"dependency-graph": "lerna-dependency-graph -f pdf -o dependency-graph.pdf",
"solc-bump": "node ./scripts/solc-bump.js",
"update": "lernaupdate"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.6.0",
"@typescript-eslint/parser": "^5.6.0",
"coveralls": "^3.1.1",
"eslint": "^8.4.1",
"eslint-plugin-react-hooks": "^4.2.0",
"husky": "^7.0.4",
"lerna": "^4.0.0",
"lerna-dependency-graph": "^1.1.0",
"lerna-update-wizard": "1.1.2",
"lint-staged": "^12.1.2",
"nyc": "15.1.0",
"prettier": "^2.5.1",
"prs-merged-since": "^1.1.0"
},
"workspaces": {
"packages": [
"packages/*"
]
},
"dependencies": {},
"lint-staged": {
"*.{js,ts,jsx,tsx}": "eslint --fix",
"*.{js,ts,jsx,tsx,css,md}": "prettier --write"
}
}