-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
36 lines (36 loc) · 928 Bytes
/
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": "pronoundb-bot",
"version": "1.0.0",
"description": "A Discord Bot that uses the PronounDB API to make people aware of people's pronouns!",
"main": "dist/index.js",
"repository": "https://github.com/NurMarvin/pronoundb-bot",
"author": "NurMarvin",
"license": "OSL-3.0",
"private": true,
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "nodemon",
"watch": "tsc -w"
},
"dependencies": {
"@prisma/client": "2.18.0",
"@sentry/node": "^6.2.1",
"@sentry/tracing": "^6.2.1",
"axios": "^0.21.1",
"discord.js": "^12.5.1",
"dotenv": "^8.2.0",
"redis": "^3.0.2"
},
"devDependencies": {
"@types/axios": "^0.14.0",
"@types/node": "^14.14.33",
"@types/redis": "^2.8.28",
"@types/ws": "^7.4.0",
"eslint": "^7.21.0",
"nodemon": "^2.0.7",
"prettier": "^2.2.1",
"prisma": "2.18.0",
"typescript": "^4.2.3"
}
}