This repository has been archived by the owner on Aug 17, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
98 lines (98 loc) · 2.97 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "healthscreeningbot",
"version": "2.12.1",
"author": {
"email": "sarkaraoyan@gmail.com",
"name": "Aoyan Sarkar"
},
"homepage": "https://github.com/HealthScreening/HealthScreeningBot",
"main": "src/client.js",
"license": "GNU GPLv3",
"maintainers": [
{
"email": "sarkaraoyan@gmail.com",
"name": "Aoyan Sarkar"
}
],
"repository": {
"type": "git",
"url": "https://github.com/HealthScreening/HealthScreeningBot.git"
},
"bugs": {
"url": "https://github.com/HealthScreening/HealthScreeningBot/issues"
},
"contributors": [
{
"email": "sarkaraoyan@gmail.com",
"name": "Aoyan Sarkar"
}
],
"description": "A discord bot to run the health screening automatically",
"readme": "README.md",
"engines": {
"node": ">=16.0.0"
},
"keywords": [
"health",
"screening",
"bot",
"nyc"
],
"dependencies": {
"@discordjs/rest": "1.0.1",
"@healthscreening/complete-screening": "1.0.6",
"@healthscreening/generate-screenshot": "1.1.4",
"@healthscreening/screening-types": "1.0.0",
"array-string-map": "3.0.0",
"axios": "0.27.2",
"bufferutil": "4.0.6",
"concurrent-priority-worker-queue": "2.0.0",
"discord.js": "14.2.0",
"erlpack": "github:discord/erlpack",
"lodash": "4.17.21",
"luxon": "3.0.1",
"pg": "8.7.3",
"pg-hstore": "2.3.4",
"puppeteer": "16.1.0",
"sequelize": "6.21.3",
"sleep-promise": "9.1.0",
"title-case": "^3.0.3",
"utf-8-validate": "5.0.9",
"uuid": "8.3.2",
"zlib-sync": "0.1.7"
},
"devDependencies": {
"@healthscreening/sequelize-lazy-migrations": "2.0.0",
"@trivago/prettier-plugin-sort-imports": "3.3.0",
"@types/lodash": "4.14.182",
"@types/luxon": "3.0.0",
"@types/node": "18.7.5",
"@types/uuid": "8.3.4",
"eslint": "8.22.0",
"eslint-config-pythoncoderas-combo": "1.1.3",
"prettier": "2.7.1",
"sequelize-cli": "6.4.1",
"typescript": "4.7.4"
},
"scripts": {
"start": "node src/client.js",
"deploy": "node src/deploy.js",
"prettier": "prettier --write .",
"prettier:check": "prettier --check .",
"eslint": "eslint --fix src",
"eslint:check": "eslint src",
"lint": "npm run prettier && npm run eslint",
"lint:check": "npm run prettier:check && npm run eslint:check",
"db:makemigrations": "./node_modules/@healthscreening/sequelize-lazy-migrations/bin/makemigration.js",
"typescript": "tsc -p tsconfig.json",
"pre-push-check": "npm run lint && npm run prettier:check && npm run typescript",
"pre-push": "npm run lint && npm run prettier && npm run typescript",
"clean-typescript": "find src -name '*.js' -exec rm -f {} +",
"update": "git pull && npm run typescript",
"build": "npm run clean-typescript && npm run typescript",
"git-rebuild": "git pull && npm run build",
"update-auto-migrations": "node scripts/updateAutoMigration.js",
"generate-guides": "node scripts/generateGuides.js"
},
"type": "commonjs"
}