-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
72 lines (72 loc) · 2.4 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "cs-discord-bot",
"version": "0.1.0",
"description": "Discord bot for UH CS Dept.",
"main": "index.js",
"scripts": {
"start": "cross-env NODE_ENV=production node src/index.js",
"dev": "cross-env NODE_ENV=development nodemon src/index.js",
"jest": "cross-env NODE_ENV=test jest --coverage --verbose --runInBand --detectOpenHandles",
"test": "cross-env NODE_ENV=test jest --coverage --runInBand",
"lint": "eslint ."
},
"jest": {
"coveragePathIgnorePatterns": [
"/src/bridge/",
"/node_modules/",
"__tests__",
"/src/db/hookInit.js",
"/src/discordBot/services/command.js",
"/src/discordBot/services/logger.js",
"src/discordBot/services/confirm.js",
"src/discordBot/commands/faculty/create_poll.js",
"src/discordBot/commands/admin/update_database.js",
"src/discordBot/commands/admin/restore_server_from_database.js",
"src/discordBot/commands/admin/server_status.js",
"src/discordBot/commands/admin/list_courses.js"
],
"testRegex": "./__tests__/jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Ohtuproju2021syksy/Discord-Bot-better"
},
"author": "Jami Kousa, Kalle \"Sendouc\", Lari Löfman, Antti Kantola, Timo Reijonen, Teemu Närhi, Okko Kuisma, Eemeli Saari, Mikko Pelkonen, Miika Koskela",
"license": "MIT",
"bugs": {
"url": "https://github.com/Ohtuproju2021syksy/Discord-Bot-better"
},
"homepage": "https://github.com/Ohtuproju2021syksy/Discord-Bot-better#readme",
"dependencies": {
"@discordjs/builders": "^0.6.0",
"@discordjs/rest": "^0.1.1-canary.0",
"axios": "^0.28.0",
"connect-flash": "^0.1.1",
"connect-session-sequelize": "^7.1.1",
"discord-api-types": "^0.22.0",
"discord.js": "^13.1.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-session": "^1.17.2",
"passport": "^0.6.0",
"passport-discord": "^0.1.4",
"pg": "^8.6.0",
"pg-hstore": "^2.3.4",
"prom-client": "^14.0.0",
"sequelize": "^6.6.2",
"telegraf": "^4.4.0",
"umzug": "^2.3.0",
"winston": "^3.3.3",
"winston-papertrail": "github:kenperkins/winston-papertrail#v2"
},
"devDependencies": {
"cross-env": "^7.0.3",
"eslint": "^7.26.0",
"eslint-plugin-jest": "^24.3.6",
"jest": "^27.0.1",
"nodemon": "^2.0.4",
"sequelize-cli": "^6.2.0",
"sequelize-mock": "^0.10.2",
"supertest": "^6.1.3"
}
}