-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1013 Bytes
/
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
{
"name": "discal",
"version": "1.0.0",
"description": "Discord bot that can read and write from Google Calendar",
"main": "./build/index.js",
"scripts": {
"build": "rimraf build && tsc",
"lint": "eslint ./src/ --ext .ts",
"dev": "npx nodemon",
"start": "node ./build/index.js",
"deploy-commands": "npx ts-node ./src/deploy.ts && npm run dev"
},
"repository": {
"type": "git",
"url": "https://github.com/DavDeDev/DisCal"
},
"author": "DavDeDev",
"license": "MIT",
"devDependencies": {
"@types/node": "^20.3.1",
"@typescript-eslint/eslint-plugin": "^5.59.11",
"@typescript-eslint/parser": "^5.59.11",
"eslint": "^8.42.0",
"eslint-config-prettier": "^8.8.0",
"nodemon": "^2.0.22",
"rimraf": "^5.0.1",
"ts-node": "^10.9.1"
},
"dependencies": {
"dayjs": "^1.11.9",
"discord.js": "^14.11.0",
"dotenv": "^16.3.0",
"google-auth-library": "^8.8.0",
"googleapis": "^118.0.0",
"open-graph-scraper": "^6.2.1"
}
}