-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.84 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
{
"name": "@holodata/bot",
"description": "Discord bot for @holodata",
"version": "0.0.0",
"author": "Yasuaki Uechi <[email protected]> (https://uechi.io/)",
"scripts": {
"build": "run-s build:prisma build:peggy build:ts",
"build:peggy": "peggy ./src/modules/hql/index.pegjs",
"build:prisma": "prisma generate",
"build:ts": "tsc",
"clean": "shx rm -rf dist",
"deploy-commands": "ts-node ./src/deploy-commands.ts",
"dev": "run-p dev:*",
"dev:prisma": "nodemon -w prisma/schema.prisma -x prisma generate",
"dev:server": "nodemon -w dist .",
"dev:tsc": "tsc -w --preserveWatchOutput",
"prepare": "husky install",
"start": "yarn deploy-commands && prisma migrate dev && node .",
"test": "jest"
},
"types": "./dist/index.d.ts",
"main": "./dist/index.js",
"files": [
"dist"
],
"dependencies": {
"@discordjs/builders": "^0.15.0",
"@discordjs/rest": "^0.5.0",
"@prisma/client": "^4.0.0",
"@typegoose/typegoose": "^9.10.1",
"discord-api-types": "^0.36.1",
"discord.js": "^13.8.1",
"emoji-regex": "^10.1.0",
"mongoose": "^6.4.3",
"peggy": "^2.0.1"
},
"devDependencies": {
"@types/jest": "^28.1.4",
"@types/node": "^18.0.3",
"husky": "^8.0.1",
"jest": "^28.1.2",
"nodemon": "^2.0.19",
"npm-run-all": "^4.1.5",
"prettier": "^2.7.1",
"pretty-quick": "^3.1.3",
"prisma": "^4.0.0",
"shx": "^0.3.4",
"ts-jest": "^28.0.5",
"ts-node": "^10.8.2",
"typescript": "^4.7.4"
},
"homepage": "https://github.com/holodata/honeybee-bot",
"repository": {
"type": "git",
"url": "https://github.com/holodata/honeybee-bot.git"
},
"bugs": {
"url": "https://github.com/holodata/honeybee-bot/issues"
},
"license": "MIT",
"keywords": [
"honeybee-bot"
],
"engines": {
"node": "^12.20.0 || ^14.13.1 || >=16.0.0"
}
}