This repository has been archived by the owner on Apr 3, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
78 lines (78 loc) · 2.2 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
{
"name": "ti-community-bot",
"version": "1.10.1",
"private": true,
"description": "A bot for community.",
"author": "Rustin-Liu <[email protected]>",
"license": "ISC",
"repository": "https://github.com/ti-community-infra/ti-community-bot.git",
"homepage": "https://github.com/ti-community-infra/ti-community-bot",
"bugs": "https://github.com/ti-community-infra/ti-community-bot/issues",
"keywords": [
"probot",
"github",
"probot-app"
],
"scripts": {
"build": "tsc",
"start": "probot run ./lib/index.js",
"build:watch": "tsc && (tsc -w --preserveWatchOutput & nodemon)",
"dev": "npm run build:watch",
"test": "jest --coverage",
"lint": "prettier --check *.**",
"lint:fix": "prettier --write *.**",
"typeorm": "ts-node ./node_modules/.bin/typeorm"
},
"dependencies": {
"ajv": "^6.12.6",
"axios": "^0.21.4",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"express-validator": "^6.12.1",
"http-status-codes": "^2.1.4",
"lodash": "^4.17.21",
"mysql": "^2.18.1",
"probot": "^11.4.1",
"probot-commands-pro": "^1.0.1",
"reflect-metadata": "^0.1.13",
"typedi": "^0.8.0",
"typeorm": "^0.2.34",
"typeorm-typedi-extensions": "^0.2.3"
},
"devDependencies": {
"@semantic-release/commit-analyzer": "^8.0.1",
"@semantic-release/git": "^9.0.1",
"@semantic-release/github": "^7.2.3",
"@semantic-release/npm": "^7.1.3",
"@semantic-release/release-notes-generator": "^9.0.3",
"@types/jest": "^26.0.24",
"@types/js-yaml": "^4.0.3",
"@types/lodash": "^4.14.173",
"@types/nock": "^11.1.0",
"@types/node": "^16.9.2",
"@typescript-eslint/parser": "^4.30.0",
"axios-mock-adapter": "^1.20.0",
"eslint-plugin-typescript": "^0.14.0",
"husky": "^7.0.2",
"jest": "^26.6.3",
"nock": "^13.1.3",
"nodemon": "^2.0.13",
"prettier": "^2.4.1",
"prettier-plugin-sh": "^0.7.1",
"semantic-release": "^17.4.7",
"smee-client": "^1.1.0",
"ts-jest": "^26.5.6",
"typescript": "^4.3.5"
},
"engines": {
"node": ">= 10.13.0"
},
"jest": {
"testEnvironment": "node"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint && npm test"
}
}
}