-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 843 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
{
"name": "root",
"private": true,
"scripts": {
"test": "yarn lint && yarn test:packages",
"test:packages": "lerna run test --concurrency 1 --stream",
"lint": "yarn lint:js && yarn lint:sol",
"lint:js": "eslint .",
"lint:sol": "solhint \"**/*.sol\" -f stylish",
"prettier": "prettier \"**/*.{js,json,css,md,sol,yml}\" --write"
},
"devDependencies": {
"dotenv": "^6.2.0",
"eslint": "^5.16.0",
"eslint-config-web3studio": "^3.0.0",
"husky": "^2.2.0",
"lerna": "^3.5.0",
"prettier": "^1.17.0",
"pretty-quick": "^1.10.0",
"solhint": "^2.1.0",
"solhint-config-web3studio": "^3.0.0",
"web3studio-helpers": "^3.0.0"
},
"workspaces": {
"packages": [
"packages/*"
]
},
"husky": {
"hooks": {
"pre-commit": "yarn pretty-quick --staged"
}
}
}