-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
69 lines (69 loc) · 2.24 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
{
"name": "lockbot",
"version": "1.0.0",
"description": "Coordinate use of your team's shared resources, in Slack 🤝",
"repository": "https://github.com/connorads/lockbot",
"author": "Connor Adams",
"license": "MIT",
"scripts": {
"lint": "npm-run-all -p -c lint:*",
"lint:tsc": "tsc --noEmit",
"lint:eslint": "eslint \"**/*.{js,ts}\"",
"lint:openapi": "openapi lint",
"db:install": "serverless plugin install --name serverless-dynamodb-local && serverless dynamodb install",
"db:start": "serverless dynamodb start",
"dev": "serverless offline",
"wait": "npm-run-all wait:*",
"wait:db": "wait-on tcp:8000",
"wait:dev": "wait-on tcp:3000",
"test": "jest",
"test:ci": "jest --coverage --maxWorkers=1",
"test:ci-with-wait": "npm-run-all wait test:ci",
"ci": "npm-run-all -p -r dev test:ci-with-wait",
"deploy": "serverless deploy"
},
"devDependencies": {
"@redocly/openapi-cli": "^1.0.0-beta.81",
"@types/aws-lambda": "^8.10.76",
"@types/jest": "26.0.23",
"@types/node": "^15.6.1",
"@types/supertest": "^2.0.11",
"@typescript-eslint/eslint-plugin": "^4.27.0",
"@typescript-eslint/parser": "^4.27.0",
"esbuild-loader": "^2.13.1",
"eslint": "7.29.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-import-resolver-typescript": "^2.4.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-jest": "^24.3.6",
"eslint-plugin-prettier": "^3.4.0",
"jest": "27.0.4",
"npm-run-all": "^4.1.5",
"prettier": "2.3.1",
"serverless": "^2.72.2",
"serverless-api-gateway-throttling": "^1.2.2",
"serverless-dynamodb-local": "^0.2.40",
"serverless-offline": "^8.4.0",
"serverless-webpack": "^5.6.1",
"supertest": "^6.1.3",
"ts-jest": "27.0.3",
"typescript": "^4.3.4",
"wait-on": "^5.2.0",
"webpack": "^5.39.1",
"webpack-cli": "^4.7.2"
},
"dependencies": {
"@slack/bolt": "^3.9.0",
"@types/basic-auth": "^1.1.3",
"@types/bcryptjs": "^2.4.2",
"@vendia/serverless-express": "^4.5.3",
"aws-sdk": "^2.1066.0",
"basic-auth": "^2.0.1",
"bcryptjs": "^2.4.3",
"env-var": "^7.1.1",
"express": "^4.17.2",
"fp-ts": "^2.11.8",
"io-ts": "^2.2.16"
}
}