-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
84 lines (84 loc) · 2.81 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
{
"name": "@grande-armee/pocket-users",
"version": "1.0.0",
"description": "Pocket Users microservice",
"author": "Grande Armee",
"license": "MIT",
"scripts": {
"prebuild": "rimraf dist",
"build": "nest build",
"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",
"start": "nest start",
"start:dev": "nest start --watch",
"start:debug": "nest start --exec 'node --inspect-brk=0.0.0.0:9229' --watch",
"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",
"test:integration": "npm run test -- --config tests-integration.config.js",
"test:integration:watch": "npm run test:integration -- --watchAll",
"test:integration:cov": "npm run test:integration -- --coverage"
},
"dependencies": {
"@golevelup/nestjs-rabbitmq": "^1.18.1",
"@grande-armee/pocket-common": "^3.5.0",
"@nestjs/common": "^8.2.4",
"@nestjs/core": "^8.2.4",
"@nestjs/microservices": "^8.2.4",
"@nestjs/mongoose": "^9.0.1",
"amqp-connection-manager": "^3.7.0",
"amqplib": "^0.8.0",
"bcrypt": "^5.0.1",
"class-transformer": "^0.5.1",
"class-validator": "^0.13.2",
"faker": "^5.5.3",
"jsonwebtoken": "^8.5.1",
"module-alias": "^2.2.2",
"mongodb": "^4.2.2",
"mongoose": "^6.1.2",
"reflect-metadata": "^0.1.13",
"rimraf": "^3.0.2",
"rxjs": "^7.4.0",
"tslib": "^2.3.1",
"uuid": "^8.3.2"
},
"devDependencies": {
"@commitlint/cli": "^15.0.0",
"@commitlint/config-conventional": "^15.0.0",
"@grande-armee/pocket-style-guide": "^2.1.0",
"@nestjs/cli": "^8.1.6",
"@nestjs/schematics": "^8.0.5",
"@nestjs/testing": "^8.2.4",
"@types/bcrypt": "^5.0.0",
"@types/faker": "^5.5.9",
"@types/jest": "^27.0.3",
"@types/jsonwebtoken": "^8.5.6",
"@types/module-alias": "^2.0.1",
"@types/node": "^17.0.0",
"@types/uuid": "^8.3.3",
"@typescript-eslint/eslint-plugin": "^5.7.0",
"@typescript-eslint/parser": "^5.7.0",
"cross-env": "^7.0.3",
"eslint": "^8.4.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^7.0.4",
"jest": "^27.4.5",
"lint-staged": "^12.1.2",
"prettier": "^2.5.1",
"ts-jest": "^27.1.2",
"ts-loader": "^9.2.6",
"ts-node": "^10.4.0",
"tsconfig-paths": "^3.12.0",
"typescript": "^4.5.4"
}
}