-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.28 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.28 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
{
"name": "coin-bot",
"version": "2.0.0",
"description": "Discord bot to manager cryptocurrencies in binance exchange",
"keywords": [
"bot",
"typescript",
"discord-js",
"cryptocurrence",
"bitcoin",
"binance",
"exchange"
],
"main": "dist/src/index.js",
"author": {
"name": "Edixon Alberto",
"email": "edixonalberto@gmail.com"
},
"license": "MIT",
"private": false,
"scripts": {
"clean": "rm -r ./dist ./store.json ",
"lint": "prettier --write ./src/**/*.ts",
"prod": "node -r ./.env -r ./dist/src/config -r ./dist/src",
"dev": "ts-node -r ./.env -r ./src/config -r ./src",
"start:prod": "yarn run build && yarn run prod",
"start:dev": "nodemon -e ts -w ./src --exec \"clear && yarn run dev\"",
"build": "tsc",
"start": "node -r ./dist/src/config -r ./dist/src"
},
"dependencies": {
"axios": "0.19.2",
"discord.js": "12.0.1",
"lowdb": "^1.0.0",
"uuid": "^7.0.3"
},
"devDependencies": {
"@types/lowdb": "^1.0.9",
"@types/node": "^13.13.15",
"@types/uuid": "^7.0.4",
"@types/ws": "^7.2.6",
"dotenv": "8.2.0",
"nodemon": "^2.0.4",
"prettier": "1.19.1",
"ts-node": "^8.10.2",
"typescript": "^3.9.7"
},
"engines": {
"node": "12.13.0",
"yarn": "1.19.1"
}
}