-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) 路 2.17 KB
/
Copy pathpackage.json
File metadata and controls
65 lines (65 loc) 路 2.17 KB
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": "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",
"packageManager": "pnpm@11.10.0",
"engines": {
"node": ">=22"
},
"scripts": {
"lint": "npm-run-all -p -c lint:*",
"lint:tsc": "tsc --noEmit",
"lint:biome": "biome check .",
"lint:eslint": "eslint .",
"lint:openapi": "redocly lint src/handlers/swagger/openapi.json",
"format": "biome check --write .",
"db:install": "serverless dynamodb install",
"db:start": "serverless dynamodb start",
"dev": "SLACK_SIGNING_SECRET=${SLACK_SIGNING_SECRET:-dummy} SLACK_CLIENT_ID=${SLACK_CLIENT_ID:-dummy} SLACK_CLIENT_SECRET=${SLACK_CLIENT_SECRET:-dummy} STATE_SECRET=${STATE_SECRET:-dummydummydummydummydummydummydu} serverless offline",
"wait": "npm-run-all wait:*",
"wait:db": "wait-on tcp:8000",
"wait:dev": "wait-on tcp:3000",
"test": "vitest run",
"test:ci": "vitest run --coverage",
"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": {
"@biomejs/biome": "2.5.2",
"@redocly/cli": "2.37.0",
"@types/aws-lambda": "^8.10.76",
"@types/express": "^5.0.6",
"@types/node": "^22.20.0",
"@types/supertest": "^2.0.11",
"@vitest/coverage-v8": "^4.1.10",
"esbuild": "^0.28.1",
"eslint": "^10.6.0",
"npm-run-all": "^4.1.5",
"serverless": "npm:osls@^4.0.0",
"serverless-dynamodb": "^0.2.58",
"serverless-esbuild": "^1.57.2",
"serverless-offline": "^14.7.4",
"supertest": "^6.1.3",
"typescript": "^6.0.3",
"typescript-eslint": "^8.62.1",
"vitest": "^4.1.10",
"wait-on": "^5.2.0"
},
"dependencies": {
"@aws-sdk/client-dynamodb": "^3.1079.0",
"@aws-sdk/lib-dynamodb": "^3.1079.0",
"@codegenie/serverless-express": "^5.0.0",
"@slack/bolt": "^4.7.3",
"@types/basic-auth": "^1.1.3",
"basic-auth": "^2.0.1",
"bcryptjs": "^3.0.3",
"env-var": "^7.1.1",
"express": "^5.2.1",
"fp-ts": "^2.11.8",
"io-ts": "^2.2.16"
}
}