-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 990 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
{
"name": "cryptocurrency-bot",
"version": "1.0.0",
"description": "Cryptocurrency telegram bot",
"main": ".\\dist\\index.js",
"repository": "https://github.com/Bulbang/cryptocurrency-bot-lambda.git",
"license": "MIT",
"scripts": {
"lint": "eslint .\\src",
"lint:fix": "eslint --fix .\\src",
"dev": "nodemon .\\src\\index.ts",
"start": "node .\\dist\\index.js",
"build": "tsc"
},
"devDependencies": {
"@types/express": "^4.17.13",
"@types/node": "^16.11.6",
"@typescript-eslint/eslint-plugin": "^5.2.0",
"@typescript-eslint/parser": "^5.2.0",
"eslint": "^7.2.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-airbnb-typescript": "^14.0.1",
"eslint-plugin-import": "2.22.1",
"nodemon": "^2.0.14",
"ts-node": "^10.4.0",
"typescript": "^4.4.4"
},
"dependencies": {
"@hapi/boom": "^9.1.4",
"axios": "^0.24.0",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"mongodb": "^4.1.3"
}
}