-
Notifications
You must be signed in to change notification settings - Fork 83
/
package.json
48 lines (48 loc) · 1.54 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
{
"name": "bal-liquidity-mining",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"build": "babel ./js/src --out-dir js/lib --extensions '.ts,.tsx' --copy-files",
"timestamps": "node js/timestamps.js",
"test": "mocha --require babel-polyfill js/test/*",
"ipfs-publish": "node js/publish.js",
"merkle-roots": "node js/lib/getMerkleRoots.js",
"migrateChannel": "node js/lib/migrateChannel.js"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"dependencies": {
"@fleekhq/fleek-storage-js": "^1.0.2",
"bignumber.js": "^9.0.0",
"cli-progress": "^3.8.2",
"dotenv": "^8.2.0",
"ethereumjs-util": "^7.0.7",
"husky": "^4.2.5",
"isomorphic-fetch": "^2.2.1",
"prettier": "^2.0.5",
"pretty-quick": "^2.0.1",
"regenerator-runtime": "^0.13.7",
"require-context": "^1.1.0",
"typescript": "^3.9.7",
"web3": "^1.2.7",
"web3-utils": "^1.3.0",
"yargs": "^15.3.1"
},
"devDependencies": {
"@babel/cli": "^7.10.5",
"@babel/core": "^7.11.1",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/preset-env": "^7.11.0",
"@babel/preset-typescript": "^7.10.4",
"@types/node": "^14.0.13",
"@typescript-eslint/eslint-plugin": "^2.33.0",
"@typescript-eslint/parser": "^2.33.0",
"babel-polyfill": "^6.26.0",
"chai": "^4.2.0",
"mocha": "^8.1.1"
}
}