-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathpackage.json
78 lines (78 loc) · 2.34 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "crypto-trading-bot",
"version": "2021.3.1",
"scripts": {
"build": "tsc",
"lint": "eslint \"src/**/*.ts\"",
"lint:fix": "eslint \"src/**/*.ts\" --fix",
"start": "tsc && node dist/src/index.js",
"start:dev": "ts-node-dev --respawn --transpile-only src/index.ts",
"ts:config-generate": "typescript-json-validator ./src/modules/configuration/Configuration.ts Configuration"
},
"dependencies": {
"@sentry/node": "^6.0.3",
"@sentry/tracing": "^6.0.3",
"cli-progress": "^3.9.0",
"crypto-js": "^4.0.0",
"debug": "^3.0.1",
"dotenv": "^8.2.0",
"fancy-log": "^1.3.0",
"jsonic": "^0.3.0",
"node-fetch": "^2.6.1",
"performance-now": "^2.1.0",
"react": "^15.6.1",
"react-stockcharts": "^0.7.0-beta.13",
"signalr-client": "0.0.17"
},
"devDependencies": {
"@types/cli-progress": "^3.9.1",
"@types/crypto-js": "^4.0.0",
"@types/fancy-log": "^1.3.1",
"@types/node": "^14.14.16",
"@types/node-fetch": "^2.5.7",
"@typescript-eslint/eslint-plugin": "^4.0.1",
"@typescript-eslint/parser": "^4.0.1",
"eslint": ">=6.0.1",
"eslint-config-prettier": "^6.11.0",
"eslint-config-semistandard": "15.0.1",
"eslint-config-standard": ">=14.1.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jest": "^24.0.0",
"eslint-plugin-node": ">=9.1.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-promise": ">=4.2.1",
"lint-staged": "^10.0.8",
"node-notifier": "^9.0.0",
"prettier": "^1.19.1",
"ts-node-dev": "^1.1.1",
"tslint": "^6.1.3",
"typescript": "^4.1.3",
"typescript-json-validator": "^2.4.2"
},
"lint-staged": {
"*.{md,json}": "prettier --write",
"src/**/*.{ts,tsx}": "eslint --fix"
},
"repository": {
"type": "git",
"url": "git@github.com:TeamWertarbyte/crypto-trading-bot.git"
},
"prettier": {
"$schema": "http://json.schemastore.org/prettierrc",
"printWidth": 80,
"tabWidth": 2,
"useTabs": false,
"semi": true,
"singleQuote": true,
"jsxSingleQuote": false,
"jsxBracketSameLine": false,
"trailingComma": "none",
"bracketSpacing": true,
"arrowParens": "always",
"requirePragma": false,
"insertPragma": false,
"endOfLine": "auto"
},
"author": "wertarbyte",
"homepage": "https://github.com/TeamWertarbyte/crypto-trading-bot#readme"
}