-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
55 lines (55 loc) · 1.39 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
{
"name": "nestjs-posthog",
"version": "1.1.2",
"description": "",
"main": "dist/plugin.js",
"repository": "github:bjerkio/nestjs-posthog",
"author": "Bjerk AS",
"license": "Apache-2.0",
"files": [
"dist/"
],
"scripts": {
"build": "tsc -p tsconfig.json",
"lint": "eslint 'src/**/*.ts' --fix",
"test": "jest --coverage src",
"prepare": "husky install .github/husky"
},
"devDependencies": {
"@cobraz/prettier-config": "^1.0.1",
"@indivorg/eslint-config": "^2.0.0",
"@nestjs/common": "8.4.1",
"@nestjs/core": "8.4.1",
"@nestjs/platform-express": "^8.4.1",
"@nestjs/testing": "^8.4.1",
"@types/jest": "^27.4.1",
"@typescript-eslint/eslint-plugin": "^5.15.0",
"eslint": "8.11.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jest": "^26.1.1",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-unicorn": "^41.0.1",
"husky": "7",
"jest": "27.5.1",
"lint-staged": "12.3.7",
"nock": "^13.2.4",
"prettier": "^2.6.0",
"reflect-metadata": "^0.1.13",
"ts-jest": "^27.1.3",
"typescript": "4.1.4"
},
"lint-staged": {
"*.ts": [
"prettier --write"
]
},
"dependencies": {
"posthog-node": "^1.3.0"
},
"peerDependencies": {
"@nestjs/common": ">=8 <9",
"@nestjs/core": ">=8 <9"
},
"prettier": "@cobraz/prettier-config"
}