This repository has been archived by the owner on Mar 8, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
77 lines (77 loc) · 2.3 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
{
"name": "@defichain/playground",
"version": "0.0.0",
"private": true,
"workspaces": [
"./packages/*"
],
"engines": {
"node": ">=14.x"
},
"scripts": {
"prepare": "husky install",
"lint": "ts-standard --fix",
"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:ci": "jest --ci --coverage --maxWorkers=4",
"packages:build": "lerna run build",
"packages:version": "lerna version $1 --yes --no-push --no-git-tag-version",
"packages:publish:next": "lerna exec -- npm publish --tag next --access public",
"packages:publish:latest": "lerna exec -- npm publish --tag latest --access public"
},
"dependencies": {
"@defichain/jellyfish-address": "^2.21.0",
"@defichain/jellyfish-api-core": "^2.21.0",
"@defichain/jellyfish-api-jsonrpc": "^2.21.0",
"@defichain/jellyfish-crypto": "^2.21.0",
"@defichain/jellyfish-testing": "^2.21.0",
"@defichain/jellyfish-transaction": "^2.21.0",
"@defichain/jellyfish-transaction-builder": "^2.21.0",
"@defichain/testcontainers": "^2.21.0",
"@nestjs/common": "^8.3.1",
"@nestjs/config": "^1.2.0",
"@nestjs/core": "^8.3.1",
"@nestjs/platform-fastify": "^8.3.1",
"@nestjs/schedule": "^1.0.2",
"@nestjs/terminus": "^8.0.4",
"bignumber.js": "^9.0.2",
"class-transformer": "^0.5.1",
"class-validator": "^0.13.2",
"defichain": "^2.21.0",
"reflect-metadata": "^0.1.13",
"rimraf": "^3.0.2",
"rxjs": "^7.5.4"
},
"devDependencies": {
"@nestjs/cli": "^8.2.1",
"@nestjs/schematics": "^8.0.7",
"@nestjs/testing": "^8.3.1",
"@types/cron": "^1.7.3",
"@types/dockerode": "^3.3.3",
"@types/jest": "^27.4.1",
"@types/lossless-json": "^1.0.1",
"@types/node": "^14.14.36",
"husky": "^7.0.4",
"jest": "^27.5.1",
"lerna": "^4.0.0",
"lint-staged": "^12.3.4",
"ts-jest": "^27.1.3",
"ts-loader": "^9.2.6",
"ts-node": "^10.5.0",
"ts-standard": "^11.0.0",
"tsconfig-paths": "^3.12.0",
"typescript": "4.3.5",
"wait-for-expect": "^3.0.2"
},
"lint-staged": {
"*.{ts,js}": [
"npm run standard"
]
}
}