This repository has been archived by the owner on Mar 24, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
84 lines (84 loc) · 2.35 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": "ti-challenge-bot",
"version": "1.0.0",
"private": true,
"description": "A challenge bot for challenge program.",
"author": "Rustin-Liu <[email protected]>",
"license": "ISC",
"repository": "https://github.com/tidb-community-bots/ti-challenge-bot",
"homepage": "https://github.com/tidb-community-bots/ti-challenge-bot",
"bugs": "https://github.com/tidb-community-bots/ti-challenge-bot/issues",
"keywords": [
"probot",
"github",
"probot-app"
],
"scripts": {
"build": "tsc",
"build:watch": "tsc && (tsc -w --preserveWatchOutput & nodemon)",
"dev": "npm run build:watch",
"start": "probot run ./lib/index.js",
"lint": "prettier --check \"src/**/*.ts\" \"test/**/*.ts\" *.md package.json tsconfig.json",
"lint:fix": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\" *.md package.json tsconfig.json",
"test": "jest --coverage",
"test:watch": "jest --watch --notify --notifyMode=change --coverage",
"typeorm": "ts-node ./node_modules/.bin/typeorm"
},
"dependencies": {
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"http-status-codes": "^2.1.4",
"mysql": "^2.14.1",
"probot": "^11.1.1",
"probot-commands-pro": "^1.0.1",
"probot-scheduler-pro": "^1.1.0",
"reflect-metadata": "^0.1.10",
"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.0",
"@semantic-release/github": "^7.2.3",
"@semantic-release/release-notes-generator": "^9.0.3",
"@types/jest": "^26.0.24",
"@types/nock": "^11.1.0",
"@typescript-eslint/parser": "^4.28.4",
"@types/node": "^16.4.0",
"eslint-plugin-typescript": "^0.14.0",
"husky": "^7.0.1",
"jest": "^25.1.0",
"nock": "^13.1.1",
"nodemon": "^2.0.12",
"semantic-release": "^17.4.4",
"smee-client": "^1.1.0",
"prettier": "2.3.2",
"ts-jest": "^25.1.0",
"ts-node": "^10.1.0",
"typescript": "^3.9.10"
},
"engines": {
"node": ">= 10"
},
"standard": {
"parser": "@typescript-eslint/parser",
"env": [
"jest"
],
"ignore": [
"/docs"
],
"plugins": [
"typescript"
]
},
"husky": {
"hooks": {
"pre-commit": "npm run lint && npm test"
}
},
"jest": {
"testEnvironment": "node"
}
}