-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 885 Bytes
/
Copy pathpackage.json
File metadata and controls
32 lines (32 loc) · 885 Bytes
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
{
"name": "eth-playground",
"version": "1.0.0",
"description": "Ethereum playground",
"type": "module",
"scripts": {
"sender-from-tx": "tsc && node build/sender-from-tx.js",
"gen-data": "tsc && node build/gen-data.js",
"test": "jest",
"lint": "eslint \"**/*.{ts,tsx}\""
},
"author": "Florian Inchingolo",
"license": "MIT",
"dependencies": {
"@ethereumjs/tx": "^3.5.1",
"ethereumjs-util": "^7.1.4",
"web3": "^1.7.1"
},
"devDependencies": {
"@types/jest": "^27.4.1",
"@types/node": "^17.0.21",
"@typescript-eslint/eslint-plugin": "^5.18.0",
"@typescript-eslint/parser": "^5.18.0",
"eslint": "^7.32.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.2.0",
"ts-jest": "^27.1.4",
"typescript": "^4.6.2"
}
}