-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.2 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.2 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
{
"name": "easysnap",
"version": "0.4.0",
"description": "EOS token snapshot tool",
"main": "index.js",
"types": "index.d.ts",
"files": [
"**/*.js",
"**/*.d.ts"
],
"scripts": {
"start": "ts-node .bin/easysnap.ts",
"puml": "tsc && ts-node scripts/puml/filter-accounts.ts",
"clean": "rimraf logs/* && rimraf db/*"
},
"bin": {
"easysnap": ".bin/easysnap.js"
},
"contributors": [
"Christoph Michel",
"Nathan Rempel",
"Denis Carriere <denis@eosnation.io>"
],
"devDependencies": {
"@types/debug": "^4.1.4",
"@types/dotenv": "*",
"@types/lowdb": "^1.0.9",
"@types/node-fetch": "^2.5.7",
"rimraf": "^2.6.3",
"ts-node": "*",
"typescript": "*"
},
"dependencies": {
"@dfuse/client": "^0.3.20",
"@types/ws": "^7.2.4",
"axios": "*",
"bignumber.js": "*",
"commander": "*",
"csv-reader": "^1.0.3",
"csv-writer": "^1.3.0",
"date-fns": "^2.0.0-alpha.29",
"dotenv": "*",
"eosjs": "^20.0.0",
"ink": "^2.2.0",
"lodash": "^4.17.11",
"long": "^4.0.0",
"lowdb": "^1.0.0",
"node-fetch": "^2.6.0",
"p-map": "^4.0.0",
"react": "^16.8.6",
"winston": "^3.2.1",
"ws": "^7.3.0"
}
}