-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
86 lines (86 loc) · 2.55 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
85
86
{
"name": "ticket-counter",
"version": "0.0.1",
"description": "Getting tech support should be easy",
"scripts": {
"dev": "npm-run-all -l build -p build:watch start:watch",
"start": "node dist/index.js",
"start:watch": "nodemon -w dist -w .env -e js dist/index.js",
"build": "tsc -p tsconfig.build.json --pretty",
"build:watch": "npm run build -- -w --preserveWatchOutput",
"test": "cross-env LOG_LEVEL=info jest",
"test:coverage": "npm run test -- --coverage",
"lint": "eslint \"src/**/*.ts\" --max-warnings 0",
"lint:fix": "npm run lint -- --fix",
"lint:staged": "lint-staged",
"typecheck": "tsc",
"prettier": "prettier -l \"src/**/*.ts\"",
"prettier:fix": "npm run prettier -- --write",
"typeorm": "ts-node --skip-project --compiler-options \"{\\\"experimentalDecorators\\\": true, \\\"emitDecoratorMetadata\\\": true, \\\"esModuleInterop\\\": true}\" ./node_modules/typeorm/cli.js"
},
"authors": [
"Spencer Kaiser <[email protected]>"
],
"engines": {
"node": "14.x"
},
"husky": {
"hooks": {
"pre-commit": "run-s build lint:staged test:coverage"
}
},
"lint-staged": {
"src/**/*.{js,ts}": [
"npm run prettier:fix",
"npm run lint:fix"
],
"src/**/*.ts": [
"npm run typecheck"
]
},
"nodemonConfig": {
"delay": "400"
},
"dependencies": {
"@americanairlines/simple-env": "^1.0.2",
"@octokit/auth": "^3.0.2",
"@octokit/graphql": "^4.6.0",
"@octokit/webhooks": "^8.0.3",
"@slack/bolt": "^3.6.0",
"@slack/types": "^2.2.0",
"@slack/web-api": "^6.4.0",
"cross-env": "^7.0.3",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"luxon": "^1.27.0",
"pg": "^8.5.1",
"typeorm": "^0.2.31",
"winston": "^3.3.3"
},
"devDependencies": {
"@types/dotenv": "^8.2.0",
"@types/jest": "^26.0.20",
"@types/luxon": "^1.26.5",
"@types/node": "^14.14.25",
"@types/supertest": "^2.0.10",
"@types/winston": "^2.4.4",
"@typescript-eslint/eslint-plugin": "^4.15.0",
"@typescript-eslint/parser": "^4.15.0",
"eslint": "^7.19.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-airbnb-typescript": "^12.3.1",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.1.3",
"husky": "^5.0.9",
"jest": "^26.6.3",
"lint-staged": "^10.5.4",
"nodemon": "^2.0.7",
"npm-run-all": "^4.1.5",
"prettier": "^2.2.1",
"supertest": "^6.1.3",
"ts-jest": "^26.5.1",
"ts-node": "^9.1.1",
"typescript": "^4.1.5"
}
}