forked from skalenetwork/skale-manager
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.49 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2.49 KB
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
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "@skalenetwork/skale-manager",
"version": "1.5.2",
"private": true,
"description": "SKALE Manager system, Decentralized task manager",
"homepage": "https://github.com/skalenetwork/skale-manager#readme",
"bugs": {
"url": "https://github.com/skalenetwork/skale-manager/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/skalenetwork/skale-manager.git"
},
"license": "AGPL-3.0",
"author": "SKALE Labs",
"contributors": [
{
"name": "Artem Payvin <artem.payvin@skalelabs.com>",
"url": "https://github.com/payvint",
"githubUsername": "payvint"
},
{
"name": "Dmytro Stebaiev",
"url": "https://github.com/DimaStebaev",
"githubUsername": "DimaStebaev"
}
],
"scripts": {
"compile": "rm -rf ./build && npx truffle compile",
"deploy": "bash ./scripts/deploy.sh",
"docs": "scripts/prepare-docs.sh",
"generate": "yarn compile && typechain --target truffle './build/**/*.json'",
"hooks": "git config core.hooksPath .githooks || true",
"lint": "npx solhint \"contracts/**/*.sol\"",
"prepare": "yarn generate && yarn hooks",
"test": "npx buidler test && yarn tsc",
"tsc": "tsc --noEmit",
"tslint": "npx tslint --project .",
"slither": "slither .",
"fullcheck": "yarn lint && yarn tsc && yarn tslint && yarn slither"
},
"dependencies": {
"@openzeppelin/cli": "^2.8.2",
"@openzeppelin/contracts": "^3.1.0",
"@openzeppelin/contracts-ethereum-package": "^3.0.0",
"@openzeppelin/upgrades": "^2.8.0",
"@truffle/hdwallet-provider": "^1.0.28",
"@types/chai": "^4.2.13",
"@types/chai-as-promised": "^7.1.3",
"@types/minimist": "^1.2.0",
"bignumber.js": "^9.0.0",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"ethereumjs-tx": "2.1.2",
"solc": "^0.6.10",
"truffle": "5.1.39",
"truffle-typings": "^1.0.8",
"ts-node": "9.0.0",
"typechain": "^1.0.5",
"typechain-target-truffle": "^1.0.2",
"web3": "^1.2.1"
},
"devDependencies": {
"@nomiclabs/buidler": "^1.4.7",
"@nomiclabs/buidler-truffle5": "^1.3.4",
"@nomiclabs/buidler-web3": "^1.3.4",
"@types/web3": "^1.0.19",
"codecov": "^3.7.2",
"dotenv": "^8.2.0",
"elliptic": "^6.5.3",
"ganache-cli": "^6.11.0",
"lodash.startcase": "^4.4.0",
"solhint": "^3.2.1",
"solidity-coverage": "^0.7.5",
"solidity-docgen": "^0.5.7",
"tslint": "^6.1.3",
"tslint-no-unused-expression-chai": "^0.1.4",
"typescript": "4.0.3"
}
}