-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
106 lines (106 loc) · 3.85 KB
/
package.json
File metadata and controls
106 lines (106 loc) · 3.85 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "stacktical-developer-toolkit",
"version": "2.5.0",
"description": "Toolkit to deploy develop Chainlink Node, Graph Node, IPFS node, dev blockchain and DSLA contracts to multiple networks seamlessly",
"scripts": {
"hardhat-node": "hardhat node",
"develop:deploy": "hh deploy --network develop --reset && hh stacktical:bootstrap --network develop && hh stacktical:deploy-sla --network develop --index 0 && npm run export-data",
"develop:deploy-reset": "hh stacktical:restart-services --network develop && npm run develop:deploy",
"custom-ganache": "ganache-cli --accounts 10 --defaultBalanceEther 100000 -d -i 1337 -l 12000000 -h 0.0.0.0",
"external-adapter": "pm2 delete external-adapter 2> /dev/null || true && pm2 start services/external-adapter/index.ts --name external-adapter --watch ./services/external-adapter --no-daemon",
"export-data": "hh stacktical:export-data",
"release:patch": "standard-version --release-as patch",
"release:minor": "standard-version --release-as minor",
"release:major": "standard-version --release-as major",
"graph:deploy:production": "sh subgraph/deploy-subgraphs.sh",
"graph:deploy:develop": "sh subgraph/deploy-develop.sh",
"postinstall": "./node_modules/.bin/pm2 install typescript"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Stacktical/stacktical-developer-toolkit.git"
},
"keywords": [
"developer",
"dsla",
"dsla-protocol",
"smartcontracts",
"chainlink",
"graph-protocol",
"ipfs",
"truffle",
"hardhat",
"toolkit"
],
"author": "DSLA core developers team",
"license": "ISC",
"bugs": {
"url": "https://github.com/Stacktical/stacktical-developer-toolkit/issues"
},
"homepage": "https://github.com/Stacktical/stacktical-developer-toolkit#readme",
"dependencies": {
"@graphprotocol/graph-cli": "^0.21.0",
"@graphprotocol/graph-ts": "^0.20.1",
"@harmony-js/core": "^0.1.57",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@stacktical/dsla-contracts": "^2.3.1",
"@truffle/hdwallet-provider": "^1.3.0",
"@typechain/ethers-v5": "^7.0.0",
"@typechain/hardhat": "^2.0.1",
"app-root-path": "^3.0.0",
"axios": "^0.21.1",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-register": "^6.26.0",
"bs58": "^4.0.1",
"consola": "^2.15.3",
"dotenv": "^9.0.0",
"express": "^4.17.1",
"fs-extra": "^10.0.0",
"hardhat-abi-exporter": "^2.2.1",
"ipfs-http-client": "^49.0.4",
"joi": "^17.4.0",
"js-yaml": "^4.1.0",
"moment": "^2.29.1",
"mustache": "^4.2.0",
"node-fetch": "^2.6.1",
"openzeppelin-solidity": "^2.5.1",
"pm2": "^4.5.6",
"truffle-hdwallet-provider": "^1.0.17",
"ts-generator": "^0.1.1",
"tslib": "^2.2.0",
"typechain": "^5.0.0",
"web3": "^1.3.5"
},
"devDependencies": {
"@babel/preset-env": "^7.14.2",
"@google-cloud/functions-framework": "^1.9.0",
"@nomiclabs/hardhat-ethers": "npm:hardhat-deploy-ethers@^0.3.0-beta.7",
"@nomiclabs/hardhat-etherscan": "^2.1.3",
"@nomiclabs/hardhat-web3": "^2.0.0",
"@typechain/web3-v1": "^3.0.0",
"avalanche": "^3.9.3",
"docker-compose": "^0.23.13",
"edit-config": "^1.8.0",
"eslint": "^7.25.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-truffle": "^0.3.1",
"ethereum-waffle": "^3.3.0",
"ethers": "^5.3.0",
"hardhat": "^2.2.1",
"hardhat-deploy": "^0.7.5",
"hardhat-deploy-ethers": "^0.3.0-beta.7",
"hardhat-docgen": "^1.1.1",
"nodemon": "^2.0.7",
"prettier": "^2.3.1",
"prettier-plugin-solidity": "^1.0.0-beta.13",
"solhint": "^2.3.1",
"solhint-plugin-prettier": "0.0.5",
"standard-version": "^9.3.0",
"ts-node": "^9.1.1",
"ts-node-dev": "^1.1.6",
"typescript": "^4.2.4"
}
}