-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 867 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 867 Bytes
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
{
"name": "contrabot",
"version": "1.0.0",
"description": "Discord Bot for Contraversum",
"main": "index.ts",
"scripts": {
"start": "ts-node index.ts",
"mac-start": "brew services start mongodb-community@7.0 && ts-node index.ts",
"systemd-start": "sudo systemctl start mongod && ts-node index.ts",
"systemv-start": "sudo service start mongod && ts-node index.ts",
"deploy-commands": "ts-node deploy-commands.ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"cron": "^2.4.3",
"discord.js": "^14.13.0",
"dotenv": "^16.3.1",
"googleapis": "^126.0.1",
"mongodb": "^6.1.0",
"npx": "^10.2.2",
"typescript": "^5.2.2"
},
"devDependencies": {
"eslint": "^8.49.0",
"ts-node": "^10.9.1"
}
}