-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.45 KB
/
Copy pathpackage.json
File metadata and controls
39 lines (39 loc) · 1.45 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
{
"name": "Yummers",
"version": "0.0.1",
"description": "Discord bot that celebrates server members' birthdays 🎉",
"main": "./build/index.js",
"scripts": {
"prisma-init": "npx prisma migrate dev --name init --schema=./src/prisma/schema.prisma",
"test": "npx eslint . --ext .ts",
"lint": "npx prettier --config .prettierrc --write .",
"build": "npx tsc --build",
"deploy-commands-dev": "ts-node -r dotenv/config ./src/deploy-commands.ts",
"deploy-commands": "ts-node -r dotenv/config ./src/deploy-commands.ts -p",
"dev": "nodemon",
"start": "node -r dotenv/config .",
"deploy": "pm2 start . --exp-backoff-restart-delay=100 --name=\"yummers\" --node-args=\"-r dotenv/config\""
},
"author": "someretical",
"license": "GPL-3",
"dependencies": {
"@prisma/client": "^4.14.1",
"discord.js": "^14.8.0",
"dotenv": "^16.0.3",
"luxon": "^3.3.0"
},
"devDependencies": {
"@types/luxon": "^3.3.0",
"@types/node": "^18.16.12",
"@typescript-eslint/eslint-plugin": "^5.58.0",
"@typescript-eslint/parser": "^5.58.0",
"eslint": "^8.38.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"prettier": "2.8.7",
"prettier-plugin-organize-imports": "^3.2.2",
"prisma": "^4.14.1",
"ts-node": "^10.9.1",
"typescript": "^5.0.4"
}
}