-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 1.07 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
{
"name": "voltbot",
"version": "1.0.0",
"description": "This repo is a discord bot for Epita, use to detect and show mistake for student's messages.",
"main": "./dist/index.js",
"type": "module",
"scripts": {
"start": "nodemon --exec node --loader ts-node/esm/transpile-only src/index.ts",
"dev": "ts-node-dev --respawn ./src/index.ts",
"test": "jest --coverage",
"test:watch": "jest --watch"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/express": "^4.17.13",
"@types/jest": "^28.1.1",
"@types/node": "^17.0.40",
"express": "^4.18.1",
"jest": "^28.1.0",
"prisma": "^3.5.0",
"ts-jest": "^28.0.4",
"ts-node": "^10.8.1",
"ts-node-dev": "^2.0.0",
"typescript": "^4.7.3"
},
"dependencies": {
"@discordx/importer": "^1.1.10",
"@prisma/client": "^3.5.0",
"discord.js": "^14.0.3",
"discordx": "^11.0.1",
"nodemon": "^2.0.19",
"reverso-api": "^2.21.1"
}
}