This repository was archived by the owner on Jul 10, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.4 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.4 KB
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": "pollpolice",
"version": "1.0.0",
"description": "PollPolice prevents certain server members from sending the newly released polls feature on Discord.",
"main": "dist/bot.js",
"scripts": {
"start": "npm run start:bot",
"prestart:bot": "npm run build",
"start:bot": "node ./dist/bot.js",
"prestart:manager": "npm run build",
"start:manager": "node ./dist/manager.js",
"dev:bot": "nodemon src/bot.ts",
"dev:manager": "nodemon src/manager.ts",
"build": "tsc --project tsconfig.json",
"db:push": "prisma db push",
"db:generate": "prisma generate",
"db:reset": "prisma migrate reset --force",
"db:format": "prisma format",
"format": "eslint --fix ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/Codeize/PollPolice.git"
},
"author": "Codeize",
"license": "MIT",
"bugs": {
"url": "https://github.com/Codeize/PollPolice/issues"
},
"homepage": "https://github.com/Codeize/PollPolice#readme",
"dependencies": {
"@fluent/bundle": "^0.17.1",
"@prisma/client": "^5.12.1",
"discord.js": "^14.14.1",
"dotenv": "^16.0.3",
"prisma": "^5.12.1"
},
"devDependencies": {
"@types/node": "^18.11.11",
"@typescript-eslint/eslint-plugin": "^5.48.1",
"@typescript-eslint/parser": "^5.48.1",
"eslint": "^8.31.0",
"nodemon": "^2.0.20",
"ts-node": "^10.9.1",
"typescript": "^4.9.4"
}
}