-
Notifications
You must be signed in to change notification settings - Fork 30
/
package.json
39 lines (39 loc) · 1.05 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
{
"name": "root",
"private": true,
"scripts": {
"test": "yarn lint && yarn test:packages && yarn w3s-expect-clean-git-tree",
"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}\" --write",
"lerna:version": "lerna version --no-push",
"lerna:publish": "lerna publish from-package",
"postinstall": "lerna run build"
},
"devDependencies": {
"chokidar-cli": "^1.2.2",
"dotenv": "^6.2.0",
"eslint": "5.12.0",
"eslint-config-web3studio": "^1.1.0",
"husky": "^1.3.1",
"lerna": "^3.10.8",
"prettier": "^1.16.4",
"pretty-quick": "^1.10.0",
"solhint": "^2.1.0",
"solhint-config-web3studio": "^2.1.0",
"web3-provider-engine": "^14.1.0",
"web3studio-helpers": "^2.1.0"
},
"workspaces": {
"packages": [
"packages/*"
]
},
"husky": {
"hooks": {
"pre-commit": "yarn pretty-quick --staged"
}
}
}