-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.37 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
{
"name": "attention-please",
"version": "1.0.0",
"description": "A discord bot for finding who did not react to the announcement.",
"main": "index.js",
"scripts": {
"start": "npm run build && node build/main.js",
"dev": "NODE_ENV=development bun run src/main.ts",
"format": "prettier --write src",
"build": "rm -rf ./build/* && ./node_modules/.bin/tsc",
"pm2": "pm2 start build/main.js --name attention-please --restart-delay 60000 && pm2 monit",
"restart": "pm2 stop attention-please && pm2 reset attention-please && pm2 start attention-please && pm2 monit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Elantris/attention-please.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Elantris/attention-please/issues"
},
"homepage": "https://github.com/Elantris/attention-please#readme",
"dependencies": {
"@firebase/app-types": "^0.9.2",
"@types/luxon": "^3.4.2",
"@types/node": "^22.7.5",
"@types/ws": "^8.5.12",
"@typescript-eslint/eslint-plugin": "^8.9.0",
"@typescript-eslint/parser": "^8.9.0",
"discord.js": "^14.16.3",
"eslint": "^9.12.0",
"firebase-admin": "^12.6.0",
"luxon": "^3.5.0",
"open-color": "^1.9.1",
"prettier": "^3.3.3",
"prettier-plugin-organize-imports": "^4.1.0",
"typescript": "^5.6.3"
}
}