-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
62 lines (62 loc) · 1.65 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
{
"author": "Akash Dathan",
"name": "crypto-trader-bot",
"version": "1.0.0",
"license": "MIT",
"description": "Trader Bot",
"main": "dist/server.js",
"scripts": {
"start:dev": "ts-node src/server.ts",
"test": "jest",
"eslint": "eslint 'src/**/*.ts'",
"eslint:fix": "eslint --fix 'src/**/*.ts'"
},
"dependencies": {
"@types/got": "^9.6.12",
"body-parser": "^1.19.0",
"class-transformer": "^0.4.0",
"class-validator": "^0.13.1",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"got": "^11.8.2",
"multer": "^1.4.3",
"node-cron": "^3.0.0",
"reflect-metadata": "^0.1.13",
"routing-controllers": "^0.9.0"
},
"devDependencies": {
"@types/body-parser": "^1.19.1",
"@types/express": "^4.17.13",
"@types/jest": "^27.0.1",
"@types/multer": "^1.4.7",
"@types/node": "^16.7.5",
"@types/node-cron": "^2.0.4",
"@typescript-eslint/eslint-plugin": "4.29.3",
"@typescript-eslint/parser": "4.29.3",
"eslint": "7.32.0",
"eslint-config-airbnb": "18.2.1",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.25.0",
"husky": "^7.0.2",
"jest": "^27.1.0",
"ts-jest": "^27.0.5",
"ts-node": "^10.2.1",
"typescript": "^4.4.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/akashdathan/crypto-trader-bot.git"
},
"keywords": [
"crypto",
"bot",
"trading",
"ethereum"
],
"bugs": {
"url": "https://github.com/akashdathan/crypto-trader-bot/issues"
},
"homepage": "https://github.com/akashdathan/crypto-trader-bot#readme"
}