-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.62 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
{
"name": "web-scraping",
"version": "1.0.0",
"description": "Web scraping",
"main": "index.js",
"scripts": {
"dev": "dotenv -e .env -- ts-node-dev --respawn --transpile-only --exit-child --watch src src/index.ts",
"format": "prettier --write \"src/**/*.ts\"",
"format:write": "yarn format --write",
"format:check": "yarn format --check",
"test": "dotenv -e .env.test -- jest --runInBand",
"lint": "tsc --project tsconfig.json --noEmit && eslint \"{src,apps,libs,test}/**/*.ts\" --color --max-warnings=0"
},
"author": "Diego Cahuayo Salazar",
"license": "MIT",
"dependencies": {
"cors": "2.8.5",
"dotenv-cli": "^7.4.2",
"express": "^4.19.2",
"express-async-handler": "1.2.0"
},
"devDependencies": {
"@playwright/test": "^1.45.3",
"@types/express": "^4.17.21",
"@types/node": "20.14.12",
"@typescript-eslint/eslint-plugin": "7.17.0",
"@typescript-eslint/parser": "7.17.0",
"nodemon": "3.1.4",
"ts-jest": "29.2.3",
"ts-node": "10.9.2",
"ts-node-dev": "2.0.0",
"typescript": "5.5.4"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": "src",
"testRegex": ".*\\.spec\\.ts$",
"transform": {
".+\\.(t|j)s$": "ts-jest"
},
"collectCoverageFrom": [
"**/*.controller.ts",
"**/*.service.ts",
"**/*.resolver.ts",
"**/*.factory.ts",
"**/utils/*.ts",
"**/events/*.ts",
"**/*.validator.ts"
],
"coverageDirectory": "../coverage",
"testEnvironment": "node",
"setupFilesAfterEnv": [
"jest-extended"
],
"testTimeout": 15000
}
}