-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
93 lines (93 loc) · 2.58 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
{
"name": "fund_wallet",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "jest",
"ind": "ts-node",
"start:dev": "nodemon",
"tsc": "./node_modules/typescript/bin/tsc",
"build": "rimraf ./build && tsc",
"start": "npm run build && node --optimize_for_size --max_old_space_size=460 build/src/index.js",
"seed": "npm run ind seed/seeder.ts",
"lint": "npm run lint:eslint && npm run lint:prettier",
"lint:prettier": "prettier --check \"src/**/**/!(*.d).{ts,json,md}\"",
"lint:eslint": "eslint src/**/*.ts",
"eslint:fix": "eslint src/**/*.ts --fix",
"prettier:fix": "prettier --write \"src/**/**/!(*.d).{ts,json,md}\""
},
"husky": {
"hooks": {
"pre-commit": "npm run lint"
}
},
"keywords": [],
"author": "Adetunji Samuel",
"license": "ISC",
"engines": {
"node": "14.x"
},
"devDependencies": {
"@faker-js/faker": "^7.6.0",
"@types/jest": "^27.4.0",
"@types/node": "^16.11.68",
"@typescript-eslint/eslint-plugin": "^5.16.0",
"@typescript-eslint/parser": "^5.16.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-promise": "^6.0.0",
"husky": "^4.3.8",
"jest": "^27.5.1",
"nodemon": "^2.0.12",
"open": "^8.4.0",
"prettier": "^2.6.0",
"rimraf": "^3.0.2",
"supertest": "^6.2.2",
"ts-jest": "^27.1.5",
"ts-node": "^10.9.1"
},
"dependencies": {
"@binance/connector": "^1.7.0",
"@codegrenade/naija-faker": "^1.0.4",
"@types/express": "^4.17.13",
"@types/node": "^16.11.68",
"authenticator": "^1.1.5",
"axios": "^0.21.4",
"bcrypt": "^5.0.1",
"body-parser": "^1.19.2",
"bull": "^4.7.0",
"compression": "^1.7.4",
"cors": "^2.8.5",
"crypto-js": "^4.1.1",
"dayjs": "^1.10.8",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"express-validator": "^6.14.0",
"faunadb": "^4.4.1",
"firebase-admin": "^11.0.1",
"flutterwave-node-v3": "^1.0.9",
"helmet": "^5.0.2",
"i": "^0.3.7",
"ioredis": "^4.28.5",
"jsonwebtoken": "^8.5.1",
"moment": "^2.29.4",
"mongoose": "^6.2.2",
"morgan": "^1.10.0",
"nanoid": "^3.3.1",
"node-binance-api": "^0.13.1",
"node-cron": "^3.0.2",
"nodemailer": "^6.7.2",
"qrcode": "^1.5.1",
"redis": "^4.0.4",
"shortid": "^2.2.16",
"telegraf": "^4.4.2",
"ts-node": "^10.9.1",
"typescript": "^4.5.5",
"uuid": "^8.3.2"
}
}