-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 751 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 751 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
{
"name": "better_counting",
"version": "0.0.1",
"description": "A simple discord bot that allows for counting in a channel",
"main": "src/index.ts",
"scripts": {
"dev": "nodemon src/index.ts",
"prod:build": "tsc -p .",
"prod:start": "ts-node dest/index.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"discord",
"bot",
"counting"
],
"author": "Landon Boles",
"license": "MIT",
"devDependencies": {
"@types/node": "^18.7.1",
"nodemon": "^2.0.19",
"prisma": "^4.2.1",
"ts-node": "^10.9.1",
"typescript": "^4.7.4"
},
"dependencies": {
"@prisma/client": "^4.2.1",
"discord.js": "^14.2.0",
"dotenv": "^16.0.1",
"mathjs": "^11.0.1"
}
}