-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.01 KB
/
Copy pathpackage.json
File metadata and controls
36 lines (36 loc) · 1.01 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
{
"name": "channelbot-3",
"version": "1.0.0",
"description": "",
"main": "main.ts",
"scripts": {
"compile": "rm -rf build/ && tsc --skipLibCheck",
"run": "npm run compile && node build/main.js",
"start:dev": "nodemon -e ts --exec \"npm run run\"",
"start": "npm run start:dev",
"deploy": "npm run compile && pm2 delete channelbot3 && cp .env build/.env && pm2 start build/main.js --name=channelbot3"
},
"author": "Thomas-X",
"license": "MIT",
"dependencies": {
"@types/axios": "^0.14.0",
"@types/node": "^13.11.1",
"@types/redis": "^2.8.17",
"@types/snoowrap": "^1.19.0",
"@types/uuid": "^7.0.2",
"axios": "^0.21.1",
"date-fns": "^2.12.0",
"dotenv": "^8.2.0",
"lodasync": "^1.0.7",
"mysql": "^2.18.1",
"nodemon": "^2.0.3",
"redis": "^3.1.1",
"reflect-metadata": "^0.1.13",
"snoowrap": "^1.21.0",
"typedi": "^0.8.0",
"typeorm": "^0.2.25",
"typescript": "^3.8.3",
"uuid": "^7.0.3",
"youtube-notification": "^1.1.0"
}
}