-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
74 lines (74 loc) · 2.52 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
69
70
71
72
73
74
{
"name": "superfluid-sentinel",
"version": "1.0.2",
"description": "Superfluid Sentinel",
"main": "main.js",
"scripts": {
"start": "node main.js $1",
"toga-status": "node scripts/printTOGAstatus.js",
"build-snap": "node scripts/buildSnapshot.js",
"test-sync": "node scripts/testSync.js",
"test-node": "node_modules/.bin/mocha -t 1000000 test/integration/node.integration.test.js",
"test-gas": "node_modules/.bin/mocha -t 1000000 test/integration/gas.integration.test.js",
"test-ida": "node_modules/.bin/mocha -t 1000000 test/integration/ida.integration.test.js",
"test-gda": "node_modules/.bin/mocha -t 1000000 test/integration/gda.integration.test.js",
"test-cfa": "node_modules/.bin/mocha -t 1000000 test/integration/cfa.integration.test.js",
"test-batch": "node_modules/.bin/mocha -t 1000000 test/integration/batch.integration.test.js",
"test-unit": "node_modules/.bin/mocha 'test/unit-tests/**/*.js'",
"test": "yarn test-unit && yarn test-node && yarn test-gas && yarn test-ida && yarn test-cfa && yarn test-gda && yarn test-batch"
},
"keywords": [
"superfluid",
"sentinel",
"solvency"
],
"author": "Superfluid",
"license": "MIT",
"dependencies": {
"@decentral.ee/web3-helpers": "^0.5.3",
"@slack/webhook": "^6.1.0",
"@superfluid-finance/ethereum-contracts": "1.9.0",
"@superfluid-finance/metadata": "^1.4.1",
"async": "^3.2.4",
"axios": "^1.4.0",
"bip39": "^3.1.0",
"commander": "^11.0.0",
"dotenv": "^16.3.1",
"eth-block-tracker": "^7.1.0",
"ethereumjs-wallet": "^1.0.2",
"ethers": "^6.4.0",
"ethjs-abi": "^0.2.1",
"express": "^4.18.2",
"node-telegram-bot-api": "^0.61.0",
"prom-client": "^14.2.0",
"sequelize": "^6.32.1",
"sqlite3": "^5.1.6",
"web3": "4.2.0",
"winston": "^3.10.0"
},
"devDependencies": {
"@nomicfoundation/hardhat-chai-matchers": "^2.0.0",
"@nomicfoundation/hardhat-ethers": "^3.0.0",
"@nomicfoundation/hardhat-toolbox": "^3.0.0",
"@nomicfoundation/hardhat-verify": "^1.0.0",
"@truffle/contract": "^4.6.26",
"@typechain/ethers-v6": "^0.4.0",
"@typechain/hardhat": "^8.0.0",
"@types/chai": "^4.2.0",
"@types/mocha": ">=9.1.0",
"chai": "^4.2.0",
"ganache": "^7.9.0",
"hardhat": "^2.20.1",
"hardhat-gas-reporter": "^1.0.8",
"husky": "^8.0.3",
"mocha": "^10.2.0",
"sinon": "^15.2.0",
"solidity-coverage": "^0.8.1",
"typechain": "^8.1.0"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint"
}
}
}