-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
73 lines (73 loc) · 2.1 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
{
"name": "nestjs-puppeteer",
"description": "Puppeteer module for NestJS",
"version": "0.0.0",
"license": "MIT",
"author": {
"name": "Sibin Grasic",
"email": "[email protected]",
"url": "https://oblak.studio"
},
"scripts": {
"build": "rm -rf dist && tsc -p tsconfig.json",
"watch": "rm -rf dist && tsc -w -p tsconfig.json",
"format": "prettier --write \"**/*.ts\"",
"lint": "eslint 'lib/**/*.ts' --fix",
"test:e2e": "jest --config ./tests/jest-e2e.json --runInBand",
"test:e2e:cov": "jest --config ./tests/jest-e2e.json --runInBand --coverage",
"test:e2e:dev": "jest --config ./tests/jest-e2e.json --runInBand --watch",
"prepare": "husky install",
"semantic-release": "semantic-release"
},
"engines": {
"node": ">=18"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"devDependencies": {
"@commitlint/cli": "18.6.0",
"@commitlint/config-angular": "18.6.0",
"@nestjs/common": "10.3.1",
"@nestjs/core": "10.3.1",
"@nestjs/platform-express": "10.3.1",
"@nestjs/testing": "10.3.1",
"@types/jest": "29.5.11",
"@types/node": "^20",
"@types/supertest": "6.0.2",
"@typescript-eslint/eslint-plugin": "6.20.0",
"@typescript-eslint/parser": "6.20.0",
"eslint": "8.56.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-import": "2.29.1",
"husky": "^9.0.7",
"jest": "29.7.0",
"lint-staged": "^15.2.1",
"puppeteer": "^21",
"puppeteer-extra": "^3.3.6",
"puppeteer-extra-plugin-stealth": "^2.11.2",
"reflect-metadata": "^0.1.13",
"rxjs": "^7.8.1",
"supertest": "6.3.4",
"ts-jest": "29.1.2",
"typescript": "^5"
},
"peerDependencies": {
"@nestjs/common": "^9.0 || ^10.0",
"@nestjs/core": "^9.0.0 || ^10.0",
"puppeteer": "^21",
"puppeteer-extra": "^3",
"reflect-metadata": "^0.1.13",
"rxjs": "^7.8.0"
},
"lint-staged": {
"**/*.{ts,json}": []
},
"publishConfig": {
"access": "public",
"provenance": true
},
"repository": {
"type": "git",
"url": "git+https://github.com/oblakstudio/nestjs-puppeteer.git"
}
}