-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·29 lines (29 loc) · 799 Bytes
/
Copy pathpackage.json
File metadata and controls
executable file
·29 lines (29 loc) · 799 Bytes
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
{
"name": "recnetphotosbot",
"version": "1.0.0",
"description": "A Discord bot that utilizes the RecNet API to send newly taken photos of subscribed profiles int oa designated channel.",
"main": "dist/main.js",
"scripts": {
"start": "node .",
"build": "tsc",
"dev": "nodemon --watch \"src/*\" --ext \"ts\" --exec \"yarn build && clear && yarn start\""
},
"author": "KyleRifqi",
"license": "ISC",
"devDependencies": {
"@types/node": "^17.0.4",
"@typescript-eslint/eslint-plugin": "^5.8.0",
"@typescript-eslint/parser": "^5.8.0",
"eslint": "^8.5.0",
"nodemon": "^2.0.15",
"typescript": "^4.5.4"
},
"dependencies": {
"@types/puppeteer": "^5.4.5",
"axios": "^0.27.1",
"discord.js": "^13.6.0",
"puppeteer": "^13.6.0",
"sqlite": "^4.1.1",
"sqlite3": "^5.0.5"
}
}