forked from bladuk/SCPBoard
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 803 Bytes
/
Copy pathpackage.json
File metadata and controls
33 lines (33 loc) · 803 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
30
31
32
33
{
"name": "scpboard",
"version": "1.0.0",
"description": "A discord bot which allows you to get information about SCP:SL servers",
"main": "./src/index.ts",
"exports": "./src/index.ts",
"scripts": {
"start": "node .",
"dev": "nodemon --config nodemon.json src/index.ts",
"deploy": "nodemon --config nodemon.json src/deploy-commands.ts",
"build": "tsc"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/node": "^20.4.4",
"nodemon": "^3.0.1",
"ts-node": "^10.9.1",
"typescript": "^5.1.6"
},
"type": "module",
"engines": {
"node": ">= 16.0.0"
},
"dependencies": {
"@types/mongoose": "^5.11.97",
"chalk": "^5.3.0",
"discord.js": "^14.11.0",
"dotenv": "^16.3.1",
"mongoose": "^7.4.0"
}
}