generated from algoan/nestjs-connector-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
111 lines (111 loc) · 3.32 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
104
105
106
107
108
109
110
111
{
"name": "@algoan/nestjs-budget-insight-connector",
"version": "2.24.0",
"description": "Budget Insight connector for Algoan",
"author": "ccoeurderoy",
"license": "UNLICENSED",
"scripts": {
"postinstall": "node-config-ts",
"prebuild": "rimraf dist",
"build": "nest build",
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
"semantic-release": "semantic-release",
"start": "nest start",
"start:dev": "concurrently --kill-others \"npm run start:fake-server\" \"nest start --watch\"",
"start:debug": "nest start --debug --watch",
"start:prod": "node dist/main",
"lint": "eslint \"{src,apps,libs}/**/*.ts\" --fix",
"test": "USER=test jest",
"test:watch": "jest --watch",
"test:cov": "jest --coverage",
"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 -i",
"test:e2e:cov": "npm run test:e2e -- --coverage",
"start:fake-server": "node json-server/server.js",
"prepare": "husky install"
},
"dependencies": {
"@algoan/nestjs-http-exception-filter": "^1.0.18",
"@algoan/nestjs-logging-interceptor": "^2.1.16",
"@algoan/rest": "^2.7.0",
"@nestjs/axios": "^0.0.6",
"@nestjs/common": "^8.3.1",
"@nestjs/core": "^8.3.1",
"@nestjs/platform-express": "^8.3.1",
"axios": "^0.26.0",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.0",
"delay": "^5.0.0",
"js-yaml": "^4.1.0",
"lodash": "^4.17.21",
"moment": "^2.29.4",
"moment-timezone": "^0.5.40",
"nest-winston": "^1.8.0",
"node-config-ts": "^3.3.1",
"reflect-metadata": "^0.1.13",
"rimraf": "^3.0.2",
"rxjs": "^7.8.0",
"uuid": "^9.0.0",
"winston": "^3.8.2"
},
"devDependencies": {
"@algoan/eslint-config": "^1.1.6",
"@codedependant/semantic-release-docker": "^4.3.0",
"@commitlint/config-conventional": "^17.4.3",
"@nestjs/cli": "^8.2.1",
"@nestjs/schematics": "^8.0.7",
"@nestjs/testing": "^8.3.1",
"@semantic-release/exec": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@types/express": "^4.17.17",
"@types/jest": "^27.4.1",
"@types/lodash": "^4.14.191",
"@types/node": "^17.0.21",
"@types/supertest": "^2.0.12",
"commitlint": "^17.4.3",
"concurrently": "^7.6.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.34.0",
"eslint-plugin-nestjs": "^1.2.3",
"husky": "^7.0.4",
"jest": "^27.5.1",
"json-server": "^0.17.1",
"lint-staged": "^12.3.4",
"nock": "^13.3.0",
"prettier": "^2.8.4",
"semantic-release": "^19.0.5",
"supertest": "^6.3.3",
"ts-jest": "^27.1.3",
"ts-node": "^10.9.1",
"tsconfig-paths": "^3.12.0",
"tslint": "^6.1.3",
"typescript": "^4.8.3"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": "src",
"testRegex": ".spec.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"coverageDirectory": "../coverage",
"testEnvironment": "node"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"lint-staged": {
"{src,apps,libs}/**/*.ts": [
"npm run lint"
],
"{src,test}/**/*.ts": [
"prettier --list-different \"{src,test}/**/*.ts\""
]
}
}