forked from Cloudible/AWS
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.03 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.03 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
{
"name": "AWS-discordBot",
"version": "1.0.0",
"description": "AWS Discord Bot",
"main": "index.js",
"scripts": {
"build": "tsc",
"dev": "nodemon --watch src --ext ts,js --exec \"ts-node src/index.ts\"",
"start": "npm run build && node dist/index.js"
},
"author": "",
"license": "ISC",
"dependencies": {
"@types/aws-sdk": "^0.0.42",
"aws-sdk": "^2.1692.0",
"cors": "^2.8.5",
"discord.js": "^14.21.0",
"dotenv": "^16.5.0",
"express": "^5.1.0",
"morgan": "^1.10.0",
"mysql2": "^3.14.1",
"nodemailer": "^6.10.1",
"nodemon": "^3.1.10",
"ssh2": "^1.16.0",
"swagger-autogen": "^2.23.7",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.1"
},
"devDependencies": {
"@types/bcrypt": "^5.0.2",
"@types/cors": "^2.8.17",
"@types/express": "^5.0.1",
"@types/morgan": "^1.9.9",
"@types/nodemailer": "^6.4.17",
"@types/ssh2": "^1.15.5",
"@types/swagger-jsdoc": "^6.0.4",
"@types/swagger-ui-express": "^4.1.8",
"ts-node": "^10.9.2"
}
}