forked from AmericanAirlines/AskingForAFriend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 1.97 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
{
"name": "asking-for-a-friend",
"version": "0.0.1",
"description": "Helping our community ask questions without fear of being judged",
"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 src/ --pretty",
"build:watch": "npm run build -- -w",
"test": "jest",
"test:coverage": "npm run test -- --coverage",
"lint": "eslint \"src/**/*.ts\" --max-warnings 0",
"lint:fix": "npm run lint -- --fix",
"lint:staged": "lint-staged",
"prettier": "prettier -l \"src/**/*.ts\"",
"prettier:fix": "npm run prettier -- --write"
},
"authors": [
"Spencer Kaiser <[email protected]>"
],
"engines": {
"node": ">=12.0.0"
},
"husky": {
"hooks": {
"pre-commit": "run-s build lint:staged test:coverage"
}
},
"lint-staged": {
"src/**/*.{js,ts}": [
"npm run prettier:fix",
"npm run lint:fix"
]
},
"nodemonConfig": {
"delay": "400"
},
"dependencies": {
"@americanairlines/simple-env": "^1.0.2",
"@slack/bolt": "^2.1.1",
"@slack/types": "^1.7.0",
"@slack/web-api": "^5.10.0",
"body-parser": "^1.19.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"winston": "^3.2.1"
},
"devDependencies": {
"@types/dotenv": "^8.2.0",
"@types/jest": "^25.2.3",
"@types/node": "^14.0.11",
"@types/supertest": "^2.0.9",
"@types/winston": "^2.4.4",
"@typescript-eslint/eslint-plugin": "^3.1.0",
"@typescript-eslint/parser": "^3.1.0",
"eslint": "^7.2.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jest": "^23.13.2",
"husky": "^4.2.5",
"jest": "^26.0.1",
"lint-staged": "^10.2.9",
"nodemon": "^2.0.4",
"npm-run-all": "^4.1.5",
"prettier": "^2.0.5",
"supertest": "^4.0.2",
"ts-jest": "^26.1.0",
"ts-node": "^8.10.2",
"typescript": "^3.9.5"
}
}