-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 1.9 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 1.9 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
78
79
80
81
82
83
84
85
86
{
"name": "@eximchain/dappbot-cli",
"version": "1.0.2",
"author": {
"name": "John O'Sullivan",
"email": "john@eximchain.com"
},
"license": "MIT",
"main": "build/cli.js",
"bin": {
"dappbot": "build/cli.js"
},
"repository": {
"type": "git",
"url": "https://github.com/Eximchain/dappbot-cli"
},
"engines": {
"node": ">=8"
},
"scripts": {
"test": "xo && ava",
"build": "tsc",
"dev": "tsc --watch",
"start": "node build/cli.js",
"prepare": "npm run build",
"postinstall": "node build/cli.js onboarding"
},
"dependencies": {
"@eximchain/dappbot-api-client": "^1.2.6",
"@eximchain/dappbot-types": "^1.7.13",
"@types/analytics-node": "^3.1.1",
"@types/ink-spinner": "^2.0.1",
"@types/lodash.flatten": "^4.4.6",
"@types/lodash.groupby": "^4.6.6",
"@types/node": "^12.7.5",
"@types/shelljs": "^0.8.5",
"@types/yargs": "^13.0.2",
"analytics-node": "^3.4.0-beta.1",
"axios": "^0.19.0",
"completarr": "^0.2.2",
"ethereum-types": "^2.1.6",
"figures": "^3.0.0",
"ink": "^2.3.0",
"ink-big-text": "^1.0.1",
"ink-link": "^1.0.0",
"ink-select-input": "^3.1.2",
"ink-spinner": "^3.0.1",
"ink-text-input": "^3.2.1",
"lodash.flatten": "^4.4.0",
"lodash.groupby": "^4.6.0",
"node-fetch": "^2.6.0",
"open": "^6.4.0",
"password-validator": "^5.0.2",
"react": "^16.9.0",
"react-request-hook": "^2.1.1",
"request": "^2.88.0",
"shelljs": "^0.8.3",
"yargs": "^14.0.0"
},
"devDependencies": {
"@babel/preset-react": "^7.0.0",
"@babel/register": "^7.6.0",
"ava": "^2.3.0",
"chalk": "^2.4.2",
"eslint-config-xo-react": "^0.20.0",
"eslint-plugin-react": "^7.14.3",
"eslint-plugin-react-hooks": "^2.0.1",
"ink-testing-library": "^1.0.2",
"ts-xor": "^1.0.8",
"typescript": "^3.6.3",
"xo": "^0.24.0"
},
"ava": {
"require": [
"@babel/register"
]
},
"babel": {
"presets": [
"@babel/preset-react"
]
},
"xo": {
"extends": "xo-react"
}
}