-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
107 lines (107 loc) · 3.44 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
{
"name": "chepi-back",
"version": "4.2.1",
"description": "back-end for chepi",
"author": "https://github.com/allohamora",
"license": "MIT",
"main": "src/main.ts",
"private": true,
"scripts": {
"prepare": "husky install",
"prebuild": "rimraf dist",
"build": "nest build",
"start": "nest start",
"start:dev": "nest start --watch",
"start:debug": "nest start --debug --watch",
"start:prod": "node dist/src/main",
"lint": "eslint",
"lint:fix": "npm run lint \"{src,apps,libs,test}/**/*.ts\" -- --fix",
"format": "prettier",
"format:fix": "prettier --write .",
"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",
"pizzas:docker-compose": "docker-compose -f libs/pizza-parser/docker-compose.yml",
"pizzas:build:script": "node -r tsconfig-paths/register -r ts-node/register libs/pizza-parser/build.ts",
"pizzas:build:script:debug": "NODE_DEBUG='pizza-parser:*' npm run pizzas:build:script",
"pizzas:build": "npm run pizzas:docker-compose up -- -d && npm run pizzas:build:script && npm run pizzas:docker-compose down",
"pizzas:build:debug": "NODE_DEBUG='pizza-parser:*' npm run pizzas:build",
"release": "standard-version",
"release:minor": "standard-version --release-as minor",
"release:patch": "standard-version --release-as patch",
"release:major": "standard-version --release-as major"
},
"dependencies": {
"@elastic/elasticsearch": "^7.17.0",
"@nestjs/common": "^8.2.6",
"@nestjs/config": "^1.1.6",
"@nestjs/core": "^8.2.6",
"@nestjs/elasticsearch": "^8.0.0",
"@nestjs/mapped-types": "*",
"@nestjs/platform-express": "^8.2.6",
"@nestjs/swagger": "^5.2.0",
"cheerio": "^1.0.0-rc.10",
"class-transformer": "^0.5.1",
"class-validator": "^0.13.2",
"got": "^11.8.3",
"hpagent": "^0.1.2",
"puppeteer": "^15.5.0",
"reflect-metadata": "^0.1.13",
"rimraf": "^3.0.2",
"rxjs": "^7.5.2",
"swagger-ui-express": "^4.3.0"
},
"devDependencies": {
"@commitlint/cli": "^16.1.0",
"@commitlint/config-conventional": "^16.0.0",
"@nestjs/cli": "^8.2.0",
"@nestjs/schematics": "^8.0.5",
"@nestjs/testing": "^8.2.6",
"@types/express": "^4.17.13",
"@types/jest": "^27.4.0",
"@types/node": "^17.0.14",
"@types/supertest": "^2.0.11",
"@typescript-eslint/eslint-plugin": "^5.10.2",
"@typescript-eslint/parser": "^5.10.2",
"eslint": "^8.8.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-beautiful-sort": "^2.0.4",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^7.0.4",
"jest": "^27.4.7",
"lint-staged": "^12.3.3",
"prettier": "^2.5.1",
"standard-version": "^9.3.2",
"supertest": "^6.2.2",
"ts-jest": "^27.1.3",
"ts-node": "^10.4.0",
"tsconfig-paths": "^3.12.0",
"typescript": "^4.5.5"
},
"engines": {
"node": ">=16.13.2",
"npm": ">=8.1.2"
},
"standard-version": {
"skip": {
"tag": true
}
},
"lint-staged": {
"*.ts": [
"npm run lint -- --fix"
],
"*.{js,json,yml,md}": [
"npm run format -- --write"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/allohamora/chepi-back.git"
},
"bugs": {
"url": "https://github.com/allohamora/chepi-back/issues"
},
"homepage": "https://github.com/allohamora/chepi-back#readme"
}