-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
103 lines (103 loc) · 3.07 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
100
101
102
103
{
"name": "nestjs-boilerplate-wizard",
"version": "0.0.1",
"description": "",
"author": "",
"private": true,
"license": "UNLICENSED",
"scripts": {
"prebuild": "rimraf dist",
"build": "nest build",
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
"start": "nest start",
"start:dev": "nest start --watch",
"start:debug": "nest start --debug --watch",
"start:prod": "node dist/main",
"lint": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix",
"test": "NODE_ENV=test mocha --require ts-node/register --ui bdd 'test/e2e/**/*.test.ts'",
"test:highload": "NODE_ENV=test mocha --require ts-node/register --ui bdd 'test/highload/**/*.test.ts'",
"test:watch": "NODE_ENV=test mocha --require ts-node/register --ui bdd 'test/e2e/**/*.test.ts' --watch"
},
"dependencies": {
"@nestjs/common": "^7.5.1",
"@nestjs/config": "^0.6.1",
"@nestjs/core": "^7.5.1",
"@nestjs/platform-express": "^7.5.1",
"@nestjs/schedule": "^1.0.0",
"@nestjs/typeorm": "^7.1.5",
"@polkadot/api": "^5.0.1",
"async": "^3.2.1",
"axios": "0.21.1",
"bignumber.js": "^9.0.1",
"class-transformer": "^0.4.0",
"class-validator": "^0.13.1",
"crypto-random-string": "^3.3.1",
"digest-stream": "^2.0.0",
"hl-digits": "^0.1.15",
"js-base64": "^3.6.0",
"keccak-256-auth": "^0.0.1",
"lodash": "^4.17.21",
"moment": "^2.29.1",
"morgan": "^1.10.0",
"nestjs-pino": "^1.3.0",
"pg": "^8.5.1",
"pretty-bytes": "^5.6.0",
"prom-client": "^13.1.0",
"raw-body": "^2.4.1",
"reflect-metadata": "^0.1.13",
"rxjs": "^6.6.3",
"typeorm": "^0.2.31",
"uuid": "^8.3.2",
"xml": "^1.0.1",
"xml-js": "^1.6.11"
},
"devDependencies": {
"@nestjs/cli": "^7.5.1",
"@nestjs/schematics": "^7.1.3",
"@nestjs/testing": "^7.5.1",
"@types/async": "^3.2.7",
"@types/chai": "^4.2.18",
"@types/express": "^4.17.8",
"@types/lodash": "^4.14.168",
"@types/mocha": "^8.2.2",
"@types/node": "^14.14.6",
"@types/supertest": "^2.0.10",
"@types/uuid": "^8.3.0",
"@types/xml": "^1.0.5",
"@typescript-eslint/eslint-plugin": "^4.6.1",
"@typescript-eslint/parser": "^4.6.1",
"aws-sdk": "^2.903.0",
"aws4-axios": "^2.4.6",
"chai": "^4.3.4",
"chalk": "^4.1.0",
"eslint": "^7.12.1",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-prettier": "^3.1.4",
"iso-random-stream": "^2.0.0",
"mocha": "^8.4.0",
"prettier": "^2.1.2",
"source-map-support": "^0.5.19",
"supertest": "^6.0.0",
"ts-loader": "^8.0.8",
"ts-node": "^9.0.0",
"tsconfig-paths": "^3.9.0",
"typescript": "^4.0.5"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": "src",
"testRegex": ".*\\.spec\\.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"collectCoverageFrom": [
"**/*.(t|j)s"
],
"coverageDirectory": "../coverage",
"testEnvironment": "node"
}
}