-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
79 lines (79 loc) · 2.49 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
{
"name": "statistic-api",
"version": "0.0.1",
"description": "",
"author": "",
"license": "MIT",
"scripts": {
"build": "rimraf dist && tsc -p tsconfig.build.json",
"test": "jest --runInBand --detectOpenHandles --forceExit",
"test:watch": "jest --watch --runInBand --detectOpenHandles",
"test:cov": "jest --coverage --runInBand --detectOpenHandles --forceExit",
"postinstall": "yarn run typechain prepare",
"typechain": "npx typechain --target ethers-v5 --out-dir src/typechain src/blockchain/contracts/abis/*.json src/blockchain/contracts/abis/**/*.json"
},
"dependencies": {
"@liaoliaots/nestjs-redis": "^8.1.0",
"@nestjs/axios": "0.0.2",
"@nestjs/common": "^8.4.4",
"@nestjs/core": "^8.4.4",
"@nestjs/platform-express": "^8.4.4",
"@nestjs/schedule": "^1.1.0",
"@nestjs/swagger": "^4.8.2",
"@nestjs/typeorm": "^7.1.5",
"async": "^3.2.0",
"class-transformer": "^0.4.0",
"class-validator": "^0.13.1",
"date-fns": "^2.22.1",
"error-stack-parser": "^2.0.6",
"ethers": "^5.6.4",
"eventsource": "^2.0.2",
"file-type": "^16.5.0",
"ioredis": "^5.0.4",
"moment": "^2.29.1",
"nestjs-ethers": "^1.0.1",
"pg": "^8.6.0",
"reflect-metadata": "^0.1.13",
"rimraf": "^3.0.2",
"rxjs": "^7.1.0",
"serialize-error": "^8.1.0",
"stacktrace-js": "^2.0.2",
"swagger-ui-express": "^4.1.6",
"typeorm": "^0.2.34",
"typeorm-naming-strategies": "^2.0.0",
"web3": "^1.3.6",
"web3-core-helpers": "^1.3.6"
},
"devDependencies": {
"@nestjs/testing": "7.6.17",
"@typechain/ethers-v5": "^10.0.0",
"@types/async": "^3.2.6",
"@types/cron": "^1.7.2",
"@types/date-fns": "^2.6.0",
"@types/eventsource": "^1.1.9",
"@types/express": "4.17.12",
"@types/jest": "26.0.23",
"@types/node": "15.12.2",
"@types/supertest": "2.0.11",
"@typescript-eslint/eslint-plugin": "^4.26.1",
"@typescript-eslint/parser": "^4.26.1",
"eslint": "^7.28.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^7.2.0",
"eslint-import-resolver-typescript": "^2.4.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-jest": "^24.3.6",
"eslint-plugin-prettier": "^3.4.0",
"jest": "27.0.4",
"nodemon": "^2.0.7",
"prettier": "2.3.1",
"supertest": "6.1.3",
"ts-jest": "27.0.3",
"ts-node": "10.0.0",
"tsc-watch": "4.4.0",
"tsconfig-paths": "3.9.0",
"tslint": "6.1.3",
"typechain": "^8.0.0",
"typescript": "4.6.3"
}
}