-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
40 lines (40 loc) · 870 Bytes
/
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
{
"name": "discord-lnd-bot",
"version": "1.0.0",
"description": "discord-lnd-bot",
"readme": "README.md",
"maintainers": [],
"author": "chrislennon",
"repository": {
"type": "git",
"url": "git+https://github.com/chrislennon/discord-lnd-bot"
},
"license": "GPL-2.0",
"dependencies": {
"dedent-js": "^1.0.1",
"discord.js": "^13.1.0",
"dotenv": "^10.0.0",
"ejs": "^3.1.6",
"express": "^4.17.1",
"node-fetch": "^2.6.1",
"qrcode": "^1.4.4",
"winston": "^3.3.3",
"wretch": "^1.7.5"
},
"engines": {
"node": ">16.6.0",
"npm": ">=7.0.0"
},
"main": "index.js",
"scripts": {
"start": "node index.js",
"startd": "nodemon index.js",
"test": "jest --coverage"
},
"devDependencies": {
"eslint": "^7.30.0",
"jest": "^27.0.6",
"nock": "^13.1.1",
"nodemon": "^2.0.11"
}
}