-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
51 lines (51 loc) · 1.68 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
48
49
50
51
{
"name": "cycle-mania",
"version": "1.1.5",
"description": "A custom bot built for the Cycle Mania community, to communicate with Strava and do other cool things.",
"main": "./src/Index.ts",
"scripts": {
"dev": "nodemon ./src/Index.ts --watch ./src",
"build:dev": "tsc && copy .env dist\\.env",
"build:docker": "docker build --tag cycle-mania .",
"build:prod": "tsc && cp .env ./dist/.env",
"start:dev": "node ./dist/src/Index.js",
"start:docker": "docker run -d --rm --name cycle-mania cycle-mania",
"stop:docker": "docker stop cycle-mania",
"pm2:start": "pm2-runtime start process.yml",
"pm2:stop": "pm2-runtime stop process.yml",
"pm2:restart": "pm2-runtime restart process.yml --update-env",
"pm2:log": "pm2-runtime log --lines 200",
"pm2:describe": "pm2-runtime describe cycle-mania > /dev/null"
},
"keywords": [],
"author": "Vitalijs Strelcuks",
"license": "ISC",
"devDependencies": {
"nodemon": "^3.0.1",
"prettier": "^3.0.0",
"ts-node": "^10.9.1"
},
"dependencies": {
"@types/logform": "^1.10.1",
"@types/luxon": "^3.3.1",
"@types/node": "^20.4.4",
"axios": "^1.4.0",
"cron": "^2.4.0",
"discord.js": "^14.11.0",
"dotenv": "^16.3.1",
"mongoose": "^7.4.1",
"node-html-parser": "^6.1.5",
"pm2": "^5.3.0",
"puppeteer": "^20.8.2",
"puppeteer-extra": "^3.3.6",
"puppeteer-extra-plugin-adblocker": "^2.13.6",
"puppeteer-extra-plugin-stealth": "^2.11.2",
"striptags": "^3.2.0",
"typescript": "^5.1.6",
"undici": "^5.22.1",
"winston": "^3.10.0",
"winston-discord-transport": "^1.3.0",
"winston-mongodb": "^5.1.1"
},
"prettier": "./.prettierrc.yaml"
}