This repository has been archived by the owner on Jun 3, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
80 lines (80 loc) · 2.32 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
{
"name": "@atlauncher/discord-bot",
"version": "1.0.0",
"description": "This is the code for our Discord bot which runs on our official Discord server at https://atl.pw/discord",
"main": "dist",
"repository": {
"type": "git",
"url": "git+https://github.com/ATLauncher/Discord-Bot.git"
},
"keywords": [
"discord",
"atlauncher",
"bot"
],
"author": "Ryan Dowling <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/ATLauncher/Discord-Bot/issues"
},
"homepage": "https://github.com/ATLauncher/Discord-Bot#readme",
"scripts": {
"build": "npm run generate:prisma && tsc",
"clean": "rimraf dist",
"config:base64": "ts-node ./utils/stringifyConfig.ts",
"db:migrate:deploy": "prisma migrate deploy",
"db:migrate:save": "prisma migrate dev",
"dev": "cross-env NODE_ENV=development nodemon",
"generate:prisma": "prisma generate",
"oauth:url": "ts-node ./utils/getOAuthUrl.ts",
"prepare": "husky install",
"start": "node dist",
"test": "echo 'no tests here :('"
},
"lint-staged": {
"{src,utils}/**/*.ts": [
"prettier --write"
]
},
"dependencies": {
"@koa/router": "^12.0.0",
"@newrelic/koa": "^7.0.0",
"@newrelic/winston-enricher": "^4.0.0",
"@prisma/client": "^4.3.1",
"@sentry/node": "^7.13.0",
"config": "^3.3.8",
"date-fns": "^2.29.3",
"discord.js": "^14.4.0",
"got": "11.8.5",
"koa": "^2.13.4",
"koa-bodyparser": "^4.3.0",
"newrelic": "^9.1.0",
"node-schedule": "^2.1.0",
"pluralize": "^8.0.0",
"winston": "^3.8.2",
"winston-newrelic-logs-transport": "^1.0.0"
},
"devDependencies": {
"@commitlint/cli": "^17.1.2",
"@commitlint/config-conventional": "^17.1.0",
"@tsconfig/node16": "^1.0.3",
"@types/config": "3.3.0",
"@types/koa": "^2.13.5",
"@types/koa__router": "^12.0.0",
"@types/koa-bodyparser": "^4.3.8",
"@types/newrelic__winston-enricher": "^0.1.1",
"@types/node": "^18.7.18",
"@types/node-schedule": "^2.1.0",
"@types/pluralize": "0.0.29",
"@types/ws": "^8.5.3",
"cross-env": "^7.0.3",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"nodemon": "^2.0.20",
"prettier": "^2.7.1",
"prisma": "^4.3.1",
"rimraf": "^3.0.2",
"ts-node": "^10.9.1",
"typescript": "^4.8.3"
}
}