-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
33 lines (33 loc) · 864 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
{
"name": "quidax-dca-bot",
"version": "1.0.0",
"main": "/dist/index.js",
"scripts": {
"build": "tsc",
"start": "node ./dist/index.js",
"dev": "nodemon index.ts",
"debug": "npm run build && node --inspect ./dist/index.js"
},
"author": "Edmund Ekott <edmund.timfon@gmail.com>",
"license": "MIT",
"dependencies": {
"axios": "^0.25.0",
"colors": "^1.4.0",
"cronstrue": "^1.123.0",
"dotenv": "^16.0.0",
"form-data": "^4.0.0",
"mailgun.js": "^4.2.1",
"node-schedule": "^2.1.0"
},
"devDependencies": {
"@types/axios": "^0.14.0",
"@types/node": "^17.0.14",
"@types/node-schedule": "^1.3.2",
"@typescript-eslint/eslint-plugin": "^5.10.2",
"@typescript-eslint/parser": "^5.10.2",
"eslint": "^8.8.0",
"nodemon": "^2.0.15",
"ts-node": "^10.4.0",
"typescript": "^4.5.5"
}
}