-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.92 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.92 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
{
"name": "hacker-rank-queue",
"version": "0.2.0",
"description": "Slack bot for managing a queue of reviewers for HackerRanks",
"main": "index.js",
"repository": "https://github.com/sourceallies/hacker-rank-queue",
"author": "Source Allies",
"license": "MIT",
"private": true,
"engines": {
"node": "24.x"
},
"scripts": {
"start": "pnpm build && node --enable-source-maps dist/index.js",
"compile": "tsc -p . --noEmit",
"build": "tsup src/index.ts --target node22 --sourcemap",
"build:docker": "docker build -t sai/hacker-rank-queue -f docker/Dockerfile .",
"lint": "pnpm lint:no-fix --fix",
"lint:no-fix": "eslint .",
"format": "prettier --write .",
"format:check": "prettier --check .",
"test": "TZ=America/Chicago jest",
"test:watch": "TZ=America/Chicago jest --watch",
"verify": "pnpm lint:no-fix && pnpm format:check && pnpm compile && pnpm build && pnpm test",
"deploy": "cd .aws && ./scripts/deploy-dev.sh ; cd ..",
"postinstall": "husky install",
"preinstall": "npx only-allow pnpm"
},
"devDependencies": {
"@eslint/js": "^9.37.0",
"@slack/types": "2.20.1",
"@types/chance": "1.1.8",
"@types/express": "^5.0.3",
"@types/google-spreadsheet": "3.3.2",
"@types/jest": "30.0.0",
"@types/node": "24.12.2",
"@types/node-cron": "3.0.11",
"@typescript-eslint/eslint-plugin": "8.59.1",
"@typescript-eslint/parser": "8.59.1",
"chance": "1.1.13",
"eslint": "9.39.4",
"eslint-plugin-only-warn": "1.2.1",
"husky": "9.1.7",
"jest": "30.3.0",
"prettier": "3.8.3",
"ts-jest": "29.4.9",
"ts-node": "10.9.2",
"tslib": "2.8.1",
"typescript": "5.9.3",
"typescript-eslint": "^8.45.0"
},
"dependencies": {
"@slack/bolt": "4.7.2",
"dotenv": "17.4.2",
"google-auth-library": "^10.5.0",
"google-spreadsheet": "5.2.0",
"lock": "1.1.0",
"node-cron": "4.2.1",
"tsup": "8.5.1"
}
}