-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
62 lines (62 loc) · 1.98 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
{
"name": "asking-for-a-friend",
"version": "0.1.0",
"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 tsconfig.build.json --pretty",
"build:watch": "yarn build -- -w",
"test": "jest",
"test:coverage": "yarn test -- --coverage",
"lint": "eslint \"src/**/*.ts\" --max-warnings 0",
"lint:fix": "yarn lint -- --fix",
"lint:staged": "lint-staged",
"prettier": "prettier -l \"src/**/*.ts\"",
"prettier:fix": "yarn prettier -- --write",
"docker:build": "docker build . --tag asking-for-a-friend",
"docker:run": "docker rm -f asking-for-a-friend && docker run -p 3001:8080 --env-file .env --name asking-for-a-friend asking-for-a-friend"
},
"authors": [
"Spencer Kaiser <[email protected]>"
],
"engines": {
"node": ">=18.0.0"
},
"nodemonConfig": {
"delay": "400"
},
"dependencies": {
"@americanairlines/simple-env": "^1.0.4",
"@slack/bolt": "^3.14.0",
"@slack/types": "^2.9.0",
"@slack/web-api": "^6.9.1",
"@types/dotenv": "^8.2.0",
"body-parser": "^1.19.0",
"dotenv": "^15.0.1",
"express": "^4.17.1",
"winston": "^3.3.3"
},
"devDependencies": {
"@types/jest": "^29.5.7",
"@types/node": "^15.0.3",
"@types/supertest": "^2.0.11",
"@typescript-eslint/eslint-plugin": "^4.23.0",
"@typescript-eslint/parser": "^4.23.0",
"eslint": "^7.26.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-airbnb-typescript": "^12.3.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.23.0",
"eslint-plugin-jest": "^24.3.6",
"jest": "^29.7.0",
"nodemon": "^3.0.1",
"npm-run-all": "^4.1.5",
"prettier": "^2.3.0",
"supertest": "^6.1.3",
"ts-jest": "^29.1.1",
"ts-node": "^9.1.1",
"typescript": "^4.2.4"
}
}