This repository has been archived by the owner on Apr 1, 2022. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
47 lines (47 loc) · 1.41 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
37
38
39
40
41
42
43
44
45
46
47
{
"name": "guard",
"description": "Guard is a Discord bot built for improved and easy moderation.",
"version": "1.0.0",
"author": {
"name": "Discord Guard creators",
"url": "https://github.com/DiscordGuard",
"email": "[email protected]"
},
"license": "GPL-3.0-or-later",
"main": "dist/index.js",
"private": true,
"scripts": {
"build": "yarn install && yarn build:tsc",
"build:tsc": "tsc",
"run:dev": "yarn env ts-node ./src/index.ts",
"env": "cross-env NODE_PATH=./src",
"eslint": "eslint ./src",
"test": "tsc",
"prisma": "prisma",
"prisma:migrate": "prisma migrate --preview-feature"
},
"dependencies": {
"@prisma/client": "^2.13.0",
"discord.js": "^12.2.0",
"dotenv": "^8.2.0",
"sqlite3": "^5.0.0"
},
"devDependencies": {
"@prisma/cli": "^2.13.0",
"@types/node": "^14.0.27",
"@types/sqlite3": "^3.1.6",
"@typescript-eslint/eslint-plugin": "^3.9.0",
"@typescript-eslint/parser": "^3.9.0",
"cross-env": "^7.0.3",
"eslint": "^7.6.0",
"typescript": "^3.9.7"
},
"repository": {
"type": "git",
"url": "https://github.com/DiscordGuard/Guard.git"
},
"bugs": {
"url": "http://github.com/DiscordGuard/Guard/issues",
"email": "[email protected]"
}
}