This repository has been archived by the owner on Feb 20, 2023. It is now read-only.
forked from JellyfishSDK/whale
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
88 lines (88 loc) · 2.69 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
{
"name": "@defichain/whale",
"version": "0.0.0",
"private": true,
"workspaces": [
"./packages/*"
],
"engines": {
"node": ">=14.x"
},
"scripts": {
"prepare": "husky install",
"standard": "ts-standard --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": "^0.49.1",
"@defichain/jellyfish-api-core": "^0.49.1",
"@defichain/jellyfish-api-jsonrpc": "^0.49.1",
"@defichain/jellyfish-crypto": "^0.49.1",
"@defichain/jellyfish-json": "^0.49.1",
"@defichain/jellyfish-network": "^0.49.1",
"@defichain/jellyfish-testing": "^0.49.1",
"@defichain/jellyfish-transaction": "^0.49.1",
"@defichain/testcontainers": "^0.49.1",
"@defichain/testing": "^0.49.1",
"@nestjs/common": "^8.1.2",
"@nestjs/config": "^1.0.2",
"@nestjs/core": "^8.1.2",
"@nestjs/platform-fastify": "^8.1.2",
"@nestjs/schedule": "^1.0.1",
"@nestjs/terminus": "^8.0.1",
"async-mutex": "^0.3.1",
"bignumber.js": "^9.0.1",
"cache-manager": "^3.4.4",
"class-transformer": "^0.4.0",
"class-validator": "^0.13.1",
"defichain": "^0.49.1",
"level": "^7.0.1",
"lexicographic-integer-encoding": "^1.0.1",
"memdown": "^6.1.1",
"reflect-metadata": "^0.1.13",
"rimraf": "^3.0.2",
"rxjs": "^7.3.0",
"subleveldown": "^6.0.1"
},
"devDependencies": {
"@nestjs/cli": "^8.1.4",
"@nestjs/schematics": "^8.0.4",
"@nestjs/testing": "^8.1.2",
"@types/cache-manager": "^3.4.2",
"@types/cron": "^1.7.3",
"@types/jest": "^27.0.2",
"@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",
"husky": "^7.0.4",
"jest": "^27.0.6",
"lerna": "^4.0.0",
"lint-staged": "^11.2.6",
"ts-jest": "^27.0.7",
"ts-loader": "^9.2.6",
"ts-node": "^10.4.0",
"ts-standard": "^10.0.0",
"tsconfig-paths": "^3.10.1",
"typescript": "4.3.5",
"wait-for-expect": "^3.0.2"
},
"lint-staged": {
"*.{ts,js}": [
"npm run standard"
]
}
}