forked from UMAprotocol/protocol
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 2.29 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "protocol",
"version": "1.0.0",
"description": "UMA Protocol Smart Contracts",
"private": true,
"scripts": {
"bootstrap": "npx lerna bootstrap",
"lint": "npm run eslint && npm run prettier -- --list-different",
"lint-fix": "npm run eslint -- --fix && npm run prettier -- --write",
"eslint": "eslint './**/*.js'",
"prettier": "prettier './**/*.js' './**/*.sol' './**/*.md'",
"test": "lerna run --stream --concurrency=1 test",
"test-fork": "lerna run --stream --concurrency=1 test-fork",
"load-addresses": "yarn workspace @uma/core load-addresses",
"create-release": "lerna version --no-git-tag-version --conventional-commits --no-push",
"publish-release": "./scripts/run_release.sh",
"qbuild": "yarn lerna run build --stream --ignore '*/*dapp*'",
"build": "yarn lerna run build --stream",
"clean": "yarn lerna run clean --stream",
"clean-packages": "yarn lerna clean --yes && rm -rf node_modules"
},
"author": "UMA Team",
"license": "AGPL-3.0",
"repository": {
"type": "git",
"url": "https://github.com/UMAprotocol/protocol.git"
},
"devDependencies": {
"@antora/cli": "^2.1.2",
"@antora/site-generator-default": "^2.1.2",
"babel-eslint": "10.0.1",
"eslint": "^5.16.0",
"eslint-config-prettier": "^6.10.1",
"eslint-config-react-app": "^5.2.1",
"eslint-plugin-flowtype": "^4.7.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-mocha": "^6.3.0",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-react-hooks": "^3.0.0",
"ganache-cli": "^6.10.2",
"husky": "^4.2.3",
"lerna": "^3.22.1",
"lint-staged": "^10.1.3",
"lodash.startcase": "^4.4.0",
"prettier": "1.19.1",
"prettier-plugin-solidity": "1.0.0-alpha.49",
"pretty-quick": "^2.0.1",
"secp256k1": "^3.7.1",
"solidity-docgen": "^0.5.3",
"truffle": "^5.1.33"
},
"bin": {
"uma": "./cli/cli_entry.sh"
},
"husky": {
"hooks": {
"pre-commit": "echo '🕺 Running eslint on staged files' && lint-staged --allow-empty && echo '🏃♂️ Running pretty-quick on staged files' && pretty-quick --staged"
}
},
"lint-staged": {
"*.js": "eslint --cache --fix"
},
"workspaces": [
"packages/*"
]
}