-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.22 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.22 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
{
"name": "big-red-bot",
"version": "1.0.0",
"main": "src/app.ts",
"repository": "https://github.com/cuappdev/big-red-bot",
"license": "MIT",
"dependencies": {
"@slack/bolt": "^4.6.0",
"@typegoose/typegoose": "^13.1.0",
"@types/node": "^24.10.13",
"dotenv": "^17.3.1",
"express": "^5.2.1",
"express-rate-limit": "^8.3.1",
"google-auth-library": "^10.5.0",
"google-spreadsheet": "^5.2.0",
"moment-timezone": "^0.6.0",
"mongoose": "~9.1.4",
"node-cron": "^4.2.1",
"nodemon": "^3.1.14",
"ts-node": "^10.9.2",
"typescript": "^5.9.3"
},
"scripts": {
"start": "ts-node --transpile-only -r dotenv/config src/app.ts",
"dev": "nodemon -r dotenv/config src/app.ts",
"format": "prettier --write .",
"lint": "eslint . --ext .ts --fix",
"test": "jest",
"test:coverage": "jest --coverage"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/express": "^5.0.6",
"@types/jest": "^29.5.14",
"@types/node-cron": "^3.0.11",
"eslint": "^10.0.2",
"globals": "^17.3.0",
"jest": "^29.7.0",
"jiti": "^2.6.1",
"mongodb-memory-server": "^10.1.2",
"prettier": "3.8.1",
"ts-jest": "^29.2.5",
"typescript-eslint": "^8.56.1"
}
}