-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 2.38 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
{
"name": "@grande-armee/pocket-common",
"version": "3.8.1",
"description": "Pocket common libraries",
"author": "Grande Armee",
"license": "MIT",
"main": "dist/index.js",
"files": [
"/dist"
],
"scripts": {
"prebuild": "rimraf dist",
"build": "nest build",
"build:watch": "tsc -w",
"prepare": "husky install",
"format": "prettier",
"format:fix": "npm run format -- --write",
"format:project": "npm run format -- \"src/**/*.ts\"",
"format:project:fix": "npm run format:project -- --write",
"lint": "eslint",
"lint:fix": "eslint --fix",
"lint:project": "npm run lint -- \"src/**/*.ts\"",
"lint:project:fix": "npm run lint:project -- --fix",
"test": "cross-env NODE_ENV=test jest",
"test:unit": "npm run test --config tests-unit.config.js",
"test:unit:watch": "npm run test:unit -- --watch",
"test:unit:cov": "npm run test:unit -- --coverage"
},
"dependencies": {
"@golevelup/nestjs-rabbitmq": "^1.21.0",
"@nestjs/common": "^8.2.6",
"@nestjs/core": "^8.2.6",
"class-transformer": "^0.5.1",
"class-validator": "^0.13.2",
"cls-hooked": "^4.2.2",
"dotenv": "^14.2.0",
"fs-extra": "^10.0.0",
"joi": "^17.5.0",
"pino": "^7.6.4",
"pino-pretty": "^7.5.0",
"reflect-metadata": "^0.1.13",
"rimraf": "^3.0.2",
"rxjs": "^7.5.2",
"tslib": "^2.3.1",
"uuid": "^8.3.2"
},
"devDependencies": {
"@commitlint/cli": "^16.1.0",
"@commitlint/config-conventional": "^16.0.0",
"@grande-armee/pocket-style-guide": "^2.2.0",
"@nestjs/cli": "^8.2.0",
"@nestjs/schematics": "^8.0.5",
"@nestjs/testing": "^8.2.6",
"@types/cls-hooked": "^4.3.3",
"@types/fs-extra": "^9.0.13",
"@types/jest": "^27.4.0",
"@types/node": "^17.0.10",
"@types/uuid": "^8.3.4",
"@typescript-eslint/eslint-plugin": "^5.10.0",
"@typescript-eslint/parser": "^5.10.0",
"eslint": "^8.7.0",
"eslint-config-prettier": "^8.3.0",
"eslint-import-resolver-typescript": "^2.5.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jest": "^25.7.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-unicorn": "^40.1.0",
"husky": "^7.0.4",
"jest": "^27.4.7",
"lint-staged": "^12.2.2",
"prettier": "^2.5.1",
"ts-jest": "^27.1.3",
"ts-loader": "^9.2.6",
"ts-node": "^10.4.0",
"tsconfig-paths": "^3.12.0",
"typescript": "^4.5.5"
}
}