-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.04 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
41
42
{
"name": "movie-night-bot",
"version": "1.0.0",
"description": "A bot to handle movie night related operations",
"main": "src/bot.js",
"engines": {
"node": "17.x",
"npm": "7.x"
},
"scripts": {
"start": "node dist/bot.js",
"start:dev": "ts-node-dev src/bot.ts",
"start:prod": "node dist/bot.js",
"postinstall": "npm run build",
"prebuild": "npm run lint",
"build": "tsc",
"watch": "tsc -w",
"lint": "eslint . --ext .ts"
},
"author": "Jesse Mazzella",
"license": "MIT",
"dependencies": {
"@discordjs/rest": "^0.1.0-canary.0",
"axios": "^0.24.0",
"discord-api-types": "^0.25.2",
"discord.js": "^13.3.1",
"dotenv": "^10.0.0",
"glob": "^7.2.0",
"mongoose": "^6.1.4",
"tslib": "^2.3.1"
},
"devDependencies": {
"@types/glob": "^7.2.0",
"@types/node": "^16.11.11",
"@typescript-eslint/eslint-plugin": "^5.9.0",
"@typescript-eslint/parser": "^5.9.0",
"eslint": "^8.6.0",
"ts-node": "^10.4.0",
"ts-node-dev": "^1.1.8",
"typescript": "^4.5.2"
}
}