-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.98 KB
/
Copy pathpackage.json
File metadata and controls
82 lines (82 loc) · 2.98 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "@grande-armee/pocket-resources",
"version": "1.0.0",
"description": "Pocket Resources 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",
"script:run": "ts-node src/scripts/executeScript.ts",
"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",
"typeorm": "ts-node -r tsconfig-paths/register ./node_modules/typeorm/cli.js",
"migration:create": "npm run typeorm migration:create -- -d 'src/app/shared/database/migrations' -n",
"migration:run": "npm run script:run -- migration.run",
"migration:revert": "npm run script:run -- migration.revert"
},
"dependencies": {
"@grande-armee/pocket-common": "^3.6.0",
"@nestjs/common": "^8.2.4",
"@nestjs/core": "^8.2.4",
"@nestjs/typeorm": "^8.0.2",
"class-transformer": "^0.5.1",
"class-validator": "^0.13.2",
"faker": "^5.5.3",
"module-alias": "^2.2.2",
"pg": "^8.7.1",
"reflect-metadata": "^0.1.13",
"rimraf": "^3.0.2",
"rxjs": "^7.5.1",
"tslib": "^2.3.1",
"typeorm": "^0.2.41"
},
"devDependencies": {
"@commitlint/cli": "^16.0.1",
"@commitlint/config-conventional": "^16.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/faker": "^5.5.9",
"@types/jest": "^27.4.0",
"@types/module-alias": "^2.0.1",
"@types/node": "^17.0.8",
"@typescript-eslint/eslint-plugin": "^5.9.0",
"@typescript-eslint/parser": "^5.9.0",
"cross-env": "^7.0.3",
"eslint": "^8.6.0",
"eslint-config-prettier": "^8.3.0",
"eslint-import-resolver-typescript": "^2.5.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jest": "^25.3.4",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-unicorn": "^40.0.0",
"husky": "^7.0.4",
"jest": "^27.4.7",
"lint-staged": "^12.1.5",
"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"
}
}