forked from tmpim/Krist
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
89 lines (89 loc) · 2.08 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
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
87
88
89
{
"name": "krist",
"version": "2.4.2",
"description": "The new Krist node written in node.js.",
"main": "index.js",
"scripts": {
"start": "node index.js",
"docs": "apidoc -i src -o static/docs"
},
"repository": {
"type": "git",
"url": "https://github.com/tmpim/Krist"
},
"author": "Lemmmy",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/tmpim/Krist/issues"
},
"homepage": "https://github.com/tmpim/Krist",
"dependencies": {
"@octokit/rest": "^18.0.12",
"body-parser": "^1.14.2",
"chalk": "^4.1.0",
"console-stamp": "^0.2.0",
"dotenv": "^8.2.0",
"express": "^5.0.0-alpha.8",
"express-basic-auth": "^1.2.0",
"express-handlebars": "^5.2.0",
"express-rate-limit": "^2.1.0",
"express-ws": "^1.0.0-rc.2",
"gitlog": "^2.1.2",
"handy-redis": "^2.1.0",
"moment": "^2.11.1",
"mysql2": "^2.1.0",
"node-cron": "^2.0.3",
"prom-client": "^13.0.0",
"redis": "^3.0.2",
"sequelize": "^6.3.5"
},
"devDependencies": {
"apidoc": "^0.25.0"
},
"apidoc": {
"title": "Krist",
"url": "https://krist.ceriat.net",
"description": "This is the documentation for the new Krist API.",
"order": [
"AddressGroup",
"GetAddress",
"GetAddresses",
"GetRichAddresses",
"GetAddressTransactions",
"GetAddressNames",
"BlockGroup",
"GetBlocks",
"GetLowestBlocks",
"GetLatestBlocks",
"GetBlock",
"GetLastBlock",
"GetBaseValue",
"GetValue",
"SubmitBlock",
"TransactionGroup",
"GetTransactions",
"GetLatestTransactions",
"GetTransaction",
"MakeTransaction",
"NameGroup",
"GetName",
"GetNames",
"GetNewNames",
"GetNameCost",
"GetNameBonus",
"RegisterName",
"TransferName",
"MiscellaneousGroup",
"WebsocketGroup",
"WebsocketStart",
"WSGetWork",
"WSMakeTransaction",
"WSSubmitBlock",
"LookupGroup",
"LookupAddresses",
"LookupBlocks",
"LookupTransactions",
"LookupNames"
]
}
}