-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 1.99 KB
/
Copy pathpackage.json
File metadata and controls
77 lines (77 loc) · 1.99 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
{
"name": "deth",
"description": "Ethereum node focused on Developer Experience",
"keywords": [
"ethereum",
"node",
"deth",
"geth",
"developer",
"experience",
"dx"
],
"version": "0.0.5",
"license": "MIT",
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"types": "./dist/esm/index.d.ts",
"engines": {
"node": ">=8.0.0"
},
"bin": "./dist/cjs/runner.js",
"files": [
"**/dist",
"README.md",
"LICENSE"
],
"scripts": {
"prepublishOnly": "yarn lint && yarn test && yarn build",
"start": "ts-node -T ./src/runner.ts",
"lint": "yarn lint:prettier --check && yarn lint:eslint",
"lint:fix": "prettier --write . && yarn lint:eslint --fix",
"lint:prettier": "prettier --check .",
"lint:eslint": "eslint src test --ext .ts,.tsx",
"typecheck": "tsc --noEmit",
"prebuild": "rm -rf dist",
"build": "./build.sh",
"test": "mocha",
"test:fix": "yarn lint:fix && yarn test && yarn typecheck"
},
"dependencies": {
"@dethnode/chain": "^0.1.0",
"@types/classnames": "^2.2.9",
"@types/debug": "^4.1.5",
"@types/express": "^4.17.2",
"@types/glob": "^7.1.1",
"@types/lodash": "^4.14.149",
"async-mutex": "^0.1.4",
"body-parser": "^1.19.0",
"chalk": "^3.0.0",
"classnames": "^2.2.6",
"debug": "^4.1.1",
"ethereumts-vm": "^4.1.3",
"ethers": "^4.0.0",
"express": "^4.17.3",
"fp-ts": "^2.3.1",
"glob": "^7.1.6",
"io-ts": "^2.0.2",
"lodash": "^4.17.15",
"react": "^16.13.0",
"react-dom": "^16.13.0",
"ts-essentials": "^6.0.1"
},
"devDependencies": {
"@types/chai-as-promised": "^7.1.2",
"@types/chai-subset": "^1.3.3",
"@types/cheerio": "^0.22.16",
"@types/react": "^16.9.23",
"@types/react-dom": "^16.9.5",
"@types/sinon": "^7.5.1",
"@types/sinon-chai": "^3.2.3",
"chai-as-promised": "^7.1.1",
"chai-http": "^4.3.0",
"chai-subset": "^1.6.0",
"sinon": "^8.0.1",
"sinon-chai": "^3.3.0"
}
}