-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.21 KB
/
Copy pathpackage.json
File metadata and controls
68 lines (68 loc) · 2.21 KB
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
{
"name": "trading-platform-test-task",
"version": "0.0.1",
"description": "",
"main": "index.js",
"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": "jest --runInBand -e --verbose",
"test:dotenv": "env-cmd -f .env npm run test",
"test:watch": "jest --watch",
"test:cov": "jest --runInBand --coverage",
"test:dotenv:cov": "env-cmd -f .env npm run test:cov",
"test:debug": "node --inspect-brk -r tsconfig-paths/register -r ts-node/register node_modules/.bin/jest --runInBand",
"test:e2e": "jest --config ./test/jest-e2e.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Eonus/trading-platform-test-task.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Eonus/trading-platform-test-task/issues"
},
"homepage": "https://github.com/Eonus/trading-platform-test-task#readme",
"devDependencies": {
"@nestjs/cli": "^9.4.0",
"@types/node": "^16.18.23",
"@types/uuid": "^9.0.1",
"@typescript-eslint/eslint-plugin": "^5.58.0",
"@typescript-eslint/parser": "^5.58.0",
"eslint": "^8.38.0",
"eslint-config-prettier": "^8.8.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.1.1",
"prettier": "^2.8.7"
},
"dependencies": {
"@nestjs/cache-manager": "^1.0.0",
"@nestjs/common": "^9.4.0",
"@nestjs/config": "^2.3.1",
"@nestjs/core": "^9.4.0",
"@nestjs/mongoose": "^10.0.2",
"@nestjs/platform-express": "^9.4.0",
"@nestjs/schedule": "^2.2.1",
"@nestjs/swagger": "^6.3.0",
"@nestjs/throttler": "^4.0.0",
"axios": "^1.3.5",
"cache-manager": "^5.2.0",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.0",
"moment": "^2.29.4",
"mongoose": "^8.0.3",
"pg": "^8.11.0",
"rxjs": "^7.8.0",
"uuid": "^9.0.0"
}
}