-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
65 lines (65 loc) · 1.73 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
{
"name": "zendesk",
"version": "0.3.0",
"description": "",
"main": "src/index.ts",
"scripts": {
"build": "tsc -p .",
"build:watch": "tsc -w -p .",
"clean": "rm -rf dist node_modules",
"check-types": "tsc",
"lint": "eslint --ignore-pattern node_modules --ignore-pattern dist --ext ts . --quiet --cache",
"fix": "eslint --ignore-pattern node_modules --ignore-pattern dist --ext ts . --quiet --fix --cache",
"start": "LOCAL=true nodemon dist/index.js",
"test": "jest --coverage"
},
"author": "",
"license": "ISC",
"dependencies": {
"async-batch": "^1.1.1",
"body-parser": "1.19.0",
"mattermost-redux": "5.33.1",
"node-fetch": "2.6.1",
"node-zendesk": "^2.1.1",
"serverless-http": "2.7.0",
"ts-node": "^9.1.1"
},
"devDependencies": {
"@babel/core": "7.15.0",
"@babel/preset-env": "7.15.0",
"@types/express": "4.17.9",
"@types/jest": "27.0.1",
"@types/node-fetch": "2.5.7",
"@types/node-zendesk": "2.0.1",
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/parser": "^4.22.0",
"babel-jest": "24.9.0",
"client-oauth2": "4.3.3",
"eslint": "7.4.0",
"eslint-import-resolver-typescript": "^2.4.0",
"eslint-plugin-import": "^2.22.1",
"express": "4.17.1",
"jest": "27.0.6",
"nodemon": "2.0.6",
"ts-jest": "27.0.5",
"ts-loader": "9.2.5",
"typescript": "^4.6.2"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"roots": [
"<rootDir>/src"
],
"testMatch": [
"**/__tests__/**/*.+(ts|tsx|js)",
"**/?(*.)+(spec|test).+(ts|tsx|js)"
],
"transform": {
"^.+\\.(ts|tsx)$": "ts-jest"
},
"testPathIgnorePatterns": [
"/dist"
]
}
}