-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.77 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
{
"name": "ms-trade",
"version": "0.0.1",
"main": "dist/main.js",
"license": "UNLICENSED",
"scripts": {
"build": "tsc",
"lint": "eslint 'src/**/*.{js,ts}' --fix",
"serve": "nodemon -r dotenv/config src/app.ts | pino-pretty -S -t",
"test": "DOTENV_CONFIG_PATH=./.env.test jest --verbose",
"test:watch": "DOTENV_CONFIG_PATH=./.env.test jest --verbose --watch",
"ts:check": "tsc --noEmit"
},
"dependencies": {
"@modebanking/pkg-sqs-consumer": "^2.1.1",
"@slack/bolt": "^3.12.0",
"axios": "^0.27.2",
"bignumber.js": "^9.0.2",
"coinbase-pro-node": "^5.0.0",
"date-fns": "^2.29.1",
"dd-trace": "^2.7.1",
"dotenv": "^16.0.1",
"express": "^4.18.1",
"firebase": "^9.9.1",
"firebase-admin": "^11.0.0",
"firebase-functions": "^3.22.0",
"mongoose": "^6.3.0",
"pino-http": "^6.6.0",
"slack-block-builder": "^2.6.0",
"yup": "^1.0.0-beta.4"
},
"devDependencies": {
"@types/express": "^4.17.13",
"@types/helmet": "^4.0.0",
"@types/jest": "^27.4.1",
"@types/jest-when": "^3.5.2",
"@types/mongoose": "^5.11.97",
"@types/node": "^17.0.22",
"@types/pino-http": "^5.8.1",
"@types/supertest": "^2.0.12",
"@typescript-eslint/eslint-plugin": "^5.16.0",
"@typescript-eslint/parser": "^5.16.0",
"eslint": "^8.15.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"jest": "^28.1.0",
"jest-when": "^3.5.1",
"mongodb-memory-server": "^8.5.0",
"nock": "^13.2.9",
"nodemon": "^2.0.15",
"pino-pretty": "^7.6.1",
"prettier": "^2.6.0",
"supertest": "^6.2.4",
"ts-jest": "^28.0.2",
"ts-node": "^10.7.0",
"typescript": "^4.6.2"
}
}