-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.12 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.12 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
37
38
39
40
{
"name": "scholarbot",
"version": "0.1.0",
"description": "ScholarBot",
"main": "index.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "npx eslint ./src",
"discord": "npx ts-node -r tsconfig-paths/register ./src/integration/discord.ts",
"slack": "npx ts-node -r tsconfig-paths/register ./src/integration/slack.ts",
"all": "npx ts-node -r tsconfig-paths/register ./src/integration/all.ts",
"example:discord": "node ./examples/acm-example-discord.js"
},
"repository": {
"type": "git",
"url": "https://github.com/ahaim5357/scholarbot"
},
"keywords": [
"Scholar"
],
"author": "Aaron Haim",
"license": "ISC",
"dependencies": {
"@slack/web-api": "^6.8.1",
"axios": "^1.3.4",
"discord.js": "^14.8.0",
"dotenv": "^16.0.3",
"fast-xml-parser": "^4.1.3",
"jsdom": "^21.1.1"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.57.0",
"@typescript-eslint/parser": "^5.57.0",
"eslint": "^8.37.0",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.2.0",
"tslib": "^2.5.0",
"typescript": "^5.0.3"
}
}