-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.17 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
{
"name": "trpg-dice",
"description": "",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"start": "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 trpg-dice --restart-delay 60000 && pm2 monit",
"restart": "pm2 stop trpg-dice && pm2 reset trpg-dice && pm2 start trpg-dice && pm2 monit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Elantris/trpg-dice.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Elantris/trpg-dice/issues"
},
"homepage": "https://github.com/Elantris/trpg-dice#readme",
"dependencies": {
"@firebase/app-types": "^0.9.2",
"@types/luxon": "^3.4.2",
"@types/node": "^22.7.5",
"@types/ramda": "^0.30.2",
"@types/ws": "^8.5.12",
"discord.js": "^14.16.3",
"dotenv": "^16.4.5",
"firebase-admin": "^12.6.0",
"luxon": "^3.5.0",
"open-color": "^1.9.1",
"prettier-plugin-organize-imports": "^4.1.0",
"ramda": "^0.30.1",
"typescript": "^5.6.3"
}
}