-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
122 lines (122 loc) · 3.05 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
{
"name": "@darkwood-fr/crypto-tracker",
"version": "1.0.0",
"description": "Crypto Tracker",
"author": {
"name": "Mathieu Ledru",
"email": "[email protected]"
},
"bugs": {
"url": "https://github.com/darkwood-fr/crypto-tracker/issues"
},
"homepage": "https://github.com/darkwood-fr/crypto-tracker/tree/main/#readme",
"keywords": [
"go"
],
"license": "AGPL-3.0-or-later",
"repository": {
"type": "git",
"url": "https://github.com/darkwood-fr/crypto-tracker.git"
},
"engines": {
"node": ">=8.0.0"
},
"main": "dist/main.ts",
"types": "dist/main.d.ts",
"files": [
"bin",
"dist",
"oclif.manifest.json",
"public"
],
"oclif": {
"commands": "./dist/command",
"bin": "crypto-tracker"
},
"bin": "./bin/crypto-tracker",
"scripts": {
"prepack": "make build",
"start": "run-script-os",
"start:default": "cd bin && ./crypto-tracker",
"start:windows": "cd bin && crypto-tracker",
"type-check": "tsc --noEmit",
"lint": "eslint . --ignore-path .gitignore --ext .ts,.tsx,.js",
"prettier": "prettier --write --no-semi \"**/*.{md,css,scss,yaml,yml,ts,json}\""
},
"dependencies": {
"@oclif/command": "^1.8.16",
"@oclif/errors": "^1.3.5",
"argon2": "0.28.3",
"axios": "^0.25.0",
"body-parser": "1.19.1",
"ccxt": "^1.70.31",
"convict": "^6.2.1",
"cors": "2.8.5",
"dotenv": "^14.2.0",
"express": "4.17.2",
"express-openapi": "^10.1.0",
"helmet": "5.0.2",
"jsonwebtoken": "8.5.1",
"md5": "^2.3.0",
"moment-timezone": "^0.5.34",
"mysql": "^2.18.1",
"nodemailer": "^6.7.2",
"open": "^8.4.0",
"reflect-metadata": "0.1.13",
"slugify": "^1.6.5",
"sqlite3": "^5.0.2",
"swagger-ui-express": "^4.3.0",
"tsoa": "^3.14.1",
"typedi": "0.10.0",
"typeorm": "0.2.41",
"unified": "^10.1.1",
"xlsx": "^0.17.5"
},
"devDependencies": {
"@oclif/dev-cli": "^1.26.10",
"@types/chai": "^4.3.0",
"@types/convict": "^6.1.1",
"@types/cors": "2.8.12",
"@types/dotenv": "8.2.0",
"@types/express": "4.17.13",
"@types/express-jwt": "6.0.4",
"@types/faker": "^6.6.8",
"@types/helmet": "0.0.48",
"@types/jest": "^27.4.0",
"@types/jsonwebtoken": "^8.5.8",
"@types/md5": "^2.3.1",
"@types/mocha": "^9.1.0",
"@types/morgan": "1.9.3",
"@types/node": "^17.0.10",
"@types/nodemailer": "^6.4.4",
"@types/supertest": "^2.0.11",
"@types/swagger-ui-express": "^4.1.3",
"@types/xlsx": "^0.0.36",
"chai": "^4.3.4",
"eslint": "^8.7.0",
"faker": "^6.6.6",
"jest": "^27.4.7",
"mocha": "^9.2.0",
"nodemon": "^2.0.15",
"prettier": "^2.5.1",
"run-script-os": "^1.1.6",
"supertest": "^6.2.2",
"ts-jest": "^27.1.3",
"ts-node": "10.4.0",
"typescript": "^4.5.5"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"testMatch": [
"**/tests/**/*.spec.ts"
],
"testPathIgnorePatterns": [
"/node_modules/",
"/dist/"
],
"setupFilesAfterEnv": [
"./tests/hooks.ts"
]
}
}