This repository has been archived by the owner on Jun 3, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
99 lines (99 loc) · 3.09 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
{
"name": "@defichain/whale",
"version": "0.0.0",
"private": true,
"workspaces": [
"./packages/*"
],
"engines": {
"node": ">=14.x"
},
"scripts": {
"prepare": "husky install",
"standard": "npm run lint",
"lint": "eslint . --fix",
"prebuild": "rimraf dist",
"build": "nest build",
"start": "nest start",
"start:dev": "nest start --watch",
"start:debug": "nest start --debug --watch",
"start:prod": "node dist/main",
"test": "jest",
"test:watch": "jest --watch",
"test:ci": "jest --ci --coverage --maxWorkers=4",
"version:set": "lerna version $1 --yes --no-push --no-git-tag-version --exact",
"packages:build": "lerna run --no-private build",
"packages:publish:next": "lerna exec --no-private -- npm publish --tag next --access public",
"packages:publish:latest": "lerna exec --no-private -- npm publish --tag latest --access public"
},
"dependencies": {
"@defichain/jellyfish-address": "^2.45.5",
"@defichain/jellyfish-api-core": "^2.45.5",
"@defichain/jellyfish-api-jsonrpc": "^2.45.5",
"@defichain/jellyfish-crypto": "^2.45.5",
"@defichain/jellyfish-json": "^2.45.5",
"@defichain/jellyfish-network": "^2.45.5",
"@defichain/jellyfish-testing": "^2.45.5",
"@defichain/jellyfish-transaction": "^2.45.5",
"@defichain/jellyfish-transaction-builder": "^2.45.5",
"@defichain/jellyfish-wallet": "^2.45.5",
"@defichain/testcontainers": "^2.45.5",
"@defichain/testing": "^2.45.5",
"@nestjs/common": "^8.4.2",
"@nestjs/config": "^2.0.0",
"@nestjs/core": "^8.4.2",
"@nestjs/platform-fastify": "^8.4.2",
"@nestjs/schedule": "^1.1.0",
"@nestjs/terminus": "^8.0.6",
"async-mutex": "^0.3.2",
"bignumber.js": "^9.0.2",
"cache-manager": "^3.6.1",
"class-transformer": "^0.5.1",
"class-validator": "^0.13.2",
"defichain": "^2.45.5",
"graphology": "^0.24.1",
"graphology-components": "^1.5.2",
"graphology-simple-path": "^0.1.2",
"level": "7.0.0",
"level-js": "6.0.0",
"level-packager": "6.0.0",
"leveldown": "6.0.0",
"lexicographic-integer-encoding": "^1.0.1",
"memdown": "^6.1.1",
"reflect-metadata": "^0.1.13",
"rimraf": "^3.0.2",
"rxjs": "^7.5.5",
"subleveldown": "^6.0.1"
},
"devDependencies": {
"@nestjs/cli": "^8.2.5",
"@nestjs/schematics": "^8.0.8",
"@nestjs/testing": "^8.4.2",
"@types/cache-manager": "^3.4.2",
"@types/cron": "^2.0.0",
"@types/jest": "^27.4.1",
"@types/level": "^6.0.0",
"@types/lossless-json": "^1.0.1",
"@types/memdown": "^3.0.0",
"@types/node": "^14.14.36",
"@types/subleveldown": "^4.1.1",
"eslint": "^7.32.0",
"eslint-config-standard-jsx": "^10.0.0",
"eslint-config-standard-with-typescript": "^21.0.1",
"husky": "^7.0.4",
"jest": "^27.5.1",
"lerna": "^4.0.0",
"lint-staged": "^12.4.1",
"ts-jest": "^27.1.4",
"ts-loader": "^9.2.8",
"ts-node": "^10.7.0",
"tsconfig-paths": "^3.14.1",
"typescript": "4.3.5",
"wait-for-expect": "^3.0.2"
},
"lint-staged": {
"*.{ts,js}": [
"eslint --fix"
]
}
}