-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.32 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
{
"name": "contractdatafactory",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "ts-node ./src/app.ts",
"start-network": "npx ganache-cli -f https://bsc-dataseed1.binance.org -d -i 56 --hardfork istanbul -b 3 -e 10000 -a 101",
"test": "echo \"Error: no test specified\" && exit 1",
"lintPretty": "pretty-quick --staged && npm run lint:fix",
"lint": "npm run lint:js ",
"lint:eslint": "eslint --ignore-path .gitignore --ext .ts",
"lint:js": "npm run lint:eslint src/",
"lint:fix": "npm run lint:js -- --fix"
},
"author": "",
"license": "ISC",
"dependencies": {
"abi-decoder": "^2.4.0",
"bignumber.js": "^9.0.1",
"colors": "^1.4.0",
"ethereumjs-tx": "^2.1.2",
"faker": "^5.5.3",
"ganache-cli": "^6.12.2",
"ganache-core": "^2.13.2",
"lodash": "^4.17.21",
"moment": "^2.29.1",
"web3": "^1.3.6"
},
"devDependencies": {
"@types/faker": "^5.5.5",
"@types/lodash": "^4.14.169",
"@types/web3": "^1.2.2",
"@typescript-eslint/eslint-plugin": "^4.26.0",
"@typescript-eslint/parser": "^4.26.0",
"eslint": "^7.27.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"prettier": "^2.3.0",
"pretty-quick": "^3.1.0",
"ts-node": "^9.1.1",
"typescript": "^4.2.4"
}
}