-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.95 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.95 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
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
{
"name": "shipid",
"description": "Fully-automated YouTube Membership Verification Bot",
"version": "0.0.0",
"author": "Yasuaki Uechi <y@uechi.io> (https://uechi.io)",
"scripts": {
"build": "tsc",
"clean": "shx rm -rf lib && docker-compose -f docker-compose.production.yml down --rmi local",
"db:push": "docker compose exec bot yarn prisma db push",
"deploy-commands": "ts-node src/discord/deploy-commands.ts",
"dev": "run-p dev:*",
"dev:prisma": "prisma generate --watch",
"dev:server": "nodemon -w lib -d 3 -C .",
"dev:tsc": "tsc -w --preserveWatchOutput",
"prepare": "husky install",
"start": "node ."
},
"main": "./lib/index.js",
"files": [
"lib"
],
"dependencies": {
"@discordjs/builders": "^1.0.0",
"@discordjs/rest": "^1.0.0",
"@prisma/client": "^4.0.0",
"@typegoose/typegoose": "^9.10.1",
"axios": "^0.27.2",
"chalk": "^4",
"debug": "^4.3.4",
"discord-api-types": "^0.36.2",
"discord.js": "^14.0.2",
"express": "^4.18.1",
"jsonwebtoken": "^8.5.1",
"luxon": "^3.0.1",
"masterchat": "^1.1.0",
"mongoose": "~6.4.4",
"node-schedule": "^2.1.0",
"prisma": "^4.0.0"
},
"devDependencies": {
"@types/debug": "^4.1.7",
"@types/express": "^4.17.13",
"@types/jest": "^28.1.6",
"@types/jsonwebtoken": "^8.5.8",
"@types/luxon": "^2.3.2",
"@types/node": "^18.0.6",
"@types/node-schedule": "^2.1.0",
"husky": "^8.0.1",
"nodemon": "^2.0.19",
"npm-run-all": "^4.1.5",
"prettier": "^2.7.1",
"pretty-quick": "^3.1.3",
"shx": "^0.3.4",
"ts-node": "^10.9.1",
"typescript": "^4.7.4"
},
"homepage": "https://github.com/holodata/shipid",
"repository": {
"type": "git",
"url": "https://github.com/holodata/shipid.git"
},
"bugs": {
"url": "https://github.com/holodata/shipid/issues"
},
"license": "Apache-2.0",
"engines": {
"node": "^12.20.0 || ^14.13.1 || >=16.0.0"
},
"private": true
}