generated from tinovyatkin/typescript-repo-template
-
Notifications
You must be signed in to change notification settings - Fork 23
/
package.json
84 lines (84 loc) · 2.14 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": "nest-puppeteer",
"description": "Puppeteer (Headless Chrome) provider for Nest.js",
"license": "MIT",
"author": "Konstantin Vyatkin <[email protected]>",
"homepage": "https://github.com/tinovyatkin/nest-puppeteer#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/tinovyatkin/nest-puppeteer.git"
},
"bugs": {
"url": "https://github.com/tinovyatkin/nest-puppeteer/issues"
},
"version": "1.1.1",
"main": "dist/index.js",
"files": [
"dist/**/*.d.ts",
"dist/**/*.js"
],
"scripts": {
"prebuild": "rimraf dist",
"build": "nest build",
"lint": "eslint --ext=ts ./src",
"prepublishOnly": "yarn build",
"test": "jest"
},
"peerDependencies": {
"@nestjs/common": ">=6",
"@nestjs/core": ">=6",
"puppeteer": ">=3"
},
"devDependencies": {
"@nestjs/cli": "8.2.8",
"@nestjs/common": "8.4.7",
"@nestjs/core": "8.4.7",
"@nestjs/platform-express": "8.4.7",
"@nestjs/schematics": "8.0.11",
"@nestjs/testing": "8.4.7",
"@types/express": "4.17.12",
"@types/jest": "27.4.1",
"@types/node": "16.18.39",
"@types/puppeteer": "5.4.3",
"@types/rimraf": "3.0.0",
"@types/supertest": "2.0.12",
"@typescript-eslint/eslint-plugin": "5.12.1",
"@typescript-eslint/parser": "5.12.1",
"eslint": "8.10.0",
"eslint-config-prettier": "8.9.0",
"eslint-plugin-import": "2.25.4",
"eslint-plugin-jest": "26.1.1",
"eslint-plugin-node": "11.1.0",
"husky": "7.0.4",
"jest": "27.5.1",
"jest-circus": "27.5.1",
"jest-sonar": "0.2.16",
"lint-staged": "12.5.0",
"npm-package-json-lint": "5.4.2",
"prettier": "2.5.1",
"prettier-package-json": "2.6.3",
"puppeteer": "13.7.0",
"reflect-metadata": "0.1.13",
"rimraf": "3.0.2",
"rxjs": "7.5.4",
"supertest": "6.2.2",
"ts-jest": "27.1.3",
"ts-loader": "9.5.0",
"ts-node": "10.9.1",
"tsconfig-paths": "3.14.2",
"typescript": "4.9.5",
"weak-napi": "2.0.2"
},
"keywords": [
"browser",
"headless",
"nest",
"nest.js",
"provider",
"puppeteer"
],
"engines": {
"node": ">=10.21",
"yarn": ">=1.19"
}
}