This repository has been archived by the owner on Apr 2, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.67 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
{
"name": "com.yestheoryfam-backend",
"version": "1.0.0",
"description": "The backend for https://yestheoryfam.com",
"main": "src/index.ts",
"repository": "https://github.com/yes-theory-fam/com.yestheoryfam-backend.git",
"author": "YesTheoryFam",
"license": "MIT",
"private": true,
"scripts": {
"build": "tsc",
"start": "ts-node-dev --respawn src/index.ts",
"start:prod": "ts-node --files src/index.ts",
"lint:fix": "eslint src/** types.ts --fix",
"lint": "eslint src/** types.ts"
},
"dependencies": {
"@hapi/boom": "^9.1.0",
"@hapi/joi": "^17.1.1",
"@koa/cors": "^3.0.0",
"@koa/router": "^8.0.8",
"axios": "^0.19.2",
"discord.js": "^12.2.0",
"dotenv": "^8.2.0",
"koa": "^2.11.0",
"koa-bodyparser": "^4.3.0",
"koa-logger-winston": "^0.0.2",
"pg": "^8.2.1",
"shortid": "^2.2.15",
"typeorm": "^0.2.25",
"winston": "^3.3.3",
"winston-discord-transport": "^1.3.0"
},
"devDependencies": {
"@types/hapi__joi": "^17.1.0",
"@types/koa": "^2.11.3",
"@types/koa-bodyparser": "^4.3.0",
"@types/koa-logger-winston": "^0.0.2",
"@types/koa__cors": "^3.0.1",
"@types/koa__router": "^8.0.2",
"@types/node": "^13.13.4",
"@types/shortid": "0.0.29",
"@types/ws": "^7.2.4",
"@typescript-eslint/eslint-plugin": "^2.31.0",
"@typescript-eslint/parser": "^2.31.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.3",
"prettier": "^2.0.5",
"ts-node": "^8.10.1",
"ts-node-dev": "^1.0.0",
"typescript": "^3.8.3"
},
"resolutions": {
"tslib": "1.11.2"
}
}