-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
40 lines (40 loc) · 1.07 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
{
"name": "boj_discord_bot",
"version": "1.0.0",
"description": "",
"main": "src/index.ts",
"type": "module",
"scripts": {
"test": "jest --testPathPattern=\"^(?!.*aws_rds\\.test\\.ts).*\" --passWithNoTests",
"start": "export NODE_ENV=production && node dist/index.js",
"dev_start": "export NODE_ENV=development && tsc && node dist/index.js",
"build": "tsc"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@aws-sdk/client-secrets-manager": "^3.379.1",
"@types/node": "^20.10.4",
"@types/node-cron": "^3.0.11",
"axios": "^1.4.0",
"discord.js": "^14.11.0",
"dotenv": "^16.3.1",
"mongoose": "^8.0.3",
"mysql2": "^3.6.0",
"node-cron": "^3.0.2",
"process": "^0.11.10",
"reflect-metadata": "^0.1.14",
"sequelize": "^6.33.0",
"sequelize-cli": "^6.6.1",
"tslib": "^2.6.2",
"typeorm": "^0.3.17",
"winston": "^3.10.0",
"winston-daily-rotate-file": "^4.7.1"
},
"devDependencies": {
"eslint": "^8.54.0",
"jest": "^29.6.2",
"typescript": "^5.4.0-dev.20231230"
}
}