This repository was archived by the owner on Nov 19, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.67 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.67 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
{
"name": "winhacks24-bot",
"version": "1.0.0",
"description": "Discord.JS Bot for Winhacks 2024",
"main": "index.ts",
"repository": "git@github.com:WinHacks/2024-bot.git",
"author": "kilbouri <kilbouri@uwindsor.ca>",
"license": "MIT",
"private": false,
"scripts": {
"dev": "ts-node ./src/index.ts",
"dev-pretty": "ts-node ./src/index.ts | pino-pretty",
"build": "yarn prisma:generate && tsc -outdir ./build",
"host": "node ./build/index.js",
"prisma:generate": "prisma generate",
"prisma:migrate": "prisma migrate deploy",
"prisma:create-migration": "prisma migrate dev",
"docker:host": "docker compose up -d",
"docker:stop": "docker compose down",
"docker:update": "yarn docker:stop && docker-compose up -d --build"
},
"prettier": {
"tabWidth": 4,
"useTabs": false,
"semi": true,
"singleQuote": false,
"quoteProps": "as-needed",
"trailingComma": "es5",
"bracketSpacing": false,
"arrowParens": "always",
"endOfLine": "lf",
"printWidth": 90
},
"eslintConfig": {
"node": true,
"es6": true
},
"devDependencies": {
"@tsconfig/node16": "^16.1.1",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
},
"dependencies": {
"@prisma/client": "^5.9.1",
"@types/node": "^20.11.16",
"discord.js": "14.14.1",
"googleapis": "^132.0.0",
"json5": "^2.2.3",
"pino": "^8.18.0",
"prisma": "^5.9.1",
"readline": "^1.3.0",
"shutdown-handler": "^1.0.1",
"systeminformation": "^5.21.24"
}
}