forked from joincivil/Civil
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1.39 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
{
"private": true,
"homepage": "https://joincivil.github.io/civil",
"workspaces": [
"packages/*"
],
"scripts": {
"build": "lerna run build --sort",
"watch": "lerna run --parallel build:watch",
"lint": "lerna run lint --parallel",
"coverage": "solidity-coverage",
"coverage:submit": "lcov-result-merger '{coverage/lcov.info, packages/**/lcov.info}' | coveralls",
"prettier": "prettier --config .prettierrc.yaml --write --list-different './**/*.{ts,tsx,json,md}'",
"clean": "lerna run clean --parallel",
"test": "lerna run test --stream --sort",
"lerna:run": "lerna run",
"prepare": "lerna run prepare --no-sort",
"ganache": "run-p ganache:raw 'lerna:run --scope @joincivil/contracts migrate:ganache'",
"ganache:raw": "ganache-cli -p 8545 --networkId 50 -d -m \"${npm_package_config_mnemonic}\" --noVMErrorsOnRPCResponse",
"serve:dapp": "cd ./packages/dapp && serve -s build",
"publish:docs": "ncp ./packages/dapp/build/ ./docs/"
},
"config": {
"mnemonic": "notice tobacco baby curious trade other capable invite cable thunder file equal"
},
"license": "(Apache-2.0 OR LGPL-2.1-only)",
"devDependencies": {
"coveralls": "^3.0.0",
"ganache-cli": "^6.1.6",
"lcov-result-merger": "^2.0.0",
"lerna": "^2.9.0",
"ncp": "^2.0.0",
"npm-run-all": "^4.1.2",
"prettier": "1.12.1",
"solidity-coverage": "^0.5.0"
}
}