forked from sgoodrow/castle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 1.99 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
{
"name": "castle-bank-bot",
"version": "1.0.0",
"description": "Discord bot for Castle's Guild Bank (an EverQuest guild).",
"main": "src/index.ts",
"repository": "[email protected]:sgoodrow/castle.git",
"author": "Scott Goodrow <[email protected]>",
"license": "MIT",
"scripts": {
"clean": "docker-compose down && rimraf postgres-db",
"start": "tsc && nodemon",
"format": "prettier-eslint --write \"src/**/*.ts\"",
"build": "tsc --skipLibCheck",
"predev": "docker-compose up -d --wait",
"dev": "nodemon",
"test": "jest --watch",
"test:ci": "jest"
},
"engines": {
"node": ">=16.9"
},
"dependencies": {
"@discordjs/builders": "^0.12.0",
"@discordjs/rest": "^0.3.0",
"@google-cloud/local-auth": "^2.1.0",
"@prisma/client": "^5.1.0",
"@types/moment-timezone": "^0.5.30",
"@types/pg": "^8.6.5",
"async-mutex": "^0.4.0",
"axios": "^1.3.4",
"axios-retry": "^3.4.0",
"discord-api-types": "^0.31.1",
"discord.js": "^14",
"google-spreadsheet": "^3.3.0",
"googleapis": "^105.0.0",
"jest": "^27.5.1",
"lodash": "^4.17.21",
"lru-cache": "^7.17.0",
"moment": "^2.29.2",
"moment-timezone": "^0.5.34",
"pg": "^8.7.3",
"prisma": "^5.2.0",
"redis": "^4.6.5",
"reflect-metadata": "^0.1.13",
"rimraf": "^3.0.2",
"typeorm": "^0.3.6",
"xlsx": "^0.18.5"
},
"devDependencies": {
"@types/google-spreadsheet": "^3.3.1",
"@types/jest": "^27.4.1",
"@types/lodash": "^4.14.181",
"@types/node": "^20.4.2",
"@types/node-fetch": "^2.6.3",
"@typescript-eslint/eslint-plugin": "^5.19.0",
"@typescript-eslint/parser": "^5.19.0",
"eslint": "^8.13.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.0.0",
"nodemon": "^2.0.15",
"prettier": "^2.6.2",
"prettier-eslint": "^15.0.1",
"prettier-eslint-cli": "^7.1.0",
"ts-jest": "^27.1.4",
"ts-node": "^10.7.0",
"typescript": "^4.6.3"
}
}