-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.46 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.46 KB
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
{
"name": "@dev-thought/nestjs-github-webhooks",
"version": "1.0.0",
"description": "Connect your Github webhooks with NestJs - modern, fast, powerful node.js web framework",
"author": "Mitko Tschimev",
"license": "MIT",
"scripts": {
"prebuild": "rm -rf dist",
"build": "tsc -p tsconfig.json",
"format": "prettier **/**/*.ts --ignore-path ./.prettierignore --write",
"prepublish:npm": "npm run build",
"publish:npm": "npm publish --access public",
"prepublish:next": "npm run build",
"publish:next": "npm publish --access public --tag next",
"test:integration": "jest --config ./tests/jest-e2e.json"
},
"devDependencies": {
"@nestjs/common": "6.10.7",
"@nestjs/core": "6.10.7",
"@nestjs/platform-express": "6.10.7",
"@nestjs/testing": "6.10.7",
"@types/jest": "24.0.23",
"@types/node": "12.12.14",
"@types/normalize-path": "3.0.0",
"@types/supertest": "^2.0.8",
"class-transformer": "0.3.1",
"husky": "3.1.0",
"jest": "24.9.0",
"lint-staged": "9.5.0",
"prettier": "1.19.1",
"reflect-metadata": "0.1.13",
"supertest": "4.0.2",
"ts-jest": "24.2.0",
"ts-node": "8.5.4",
"typescript": "3.7.3"
},
"peerDependencies": {
"@nestjs/core": "^6.4.0",
"reflect-metadata": "^0.1.12"
},
"lint-staged": {
"*.ts": [
"prettier --ignore-path ./.prettierignore --write",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}