forked from jozsefsallai/discord-google-classroom
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.47 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
{
"name": "discord-google-classroom",
"version": "1.1.1",
"description": "A Discord bot that sends notifications to a channel about updates in Google Classroom.",
"main": "dist/index.js",
"scripts": {
"build": "rm -rf dist && tsc",
"dev": "ts-node src",
"lint": "eslint src --ext .ts",
"start": "node dist/index",
"watch": "nodemon --config nodemon.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jozsefsallai/discord-classroom.git"
},
"author": "@jozsefsallai",
"license": "MIT",
"bugs": {
"url": "https://github.com/jozsefsallai/discord-classroom/issues"
},
"homepage": "https://github.com/jozsefsallai/discord-classroom#readme",
"dependencies": {
"date-fns": "^2.16.1",
"date-fns-tz": "^1.0.10",
"discord.js": "^12.3.1",
"express": "^4.17.1",
"googleapis": "^59.0.0",
"inquirer": "^7.3.3",
"lodash.differenceby": "^4.8.0"
},
"devDependencies": {
"@types/express": "^4.17.8",
"@types/inquirer": "^7.3.1",
"@types/lodash.differenceby": "^4.8.6",
"@types/node": "^14.11.1",
"@types/ws": "^7.2.6",
"@typescript-eslint/eslint-plugin": "^4.1.1",
"@typescript-eslint/parser": "^4.1.1",
"eslint": "^7.9.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"ts-node": "^9.0.0",
"typescript": "^4.0.2"
}
}