-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
99 lines (99 loc) · 2.86 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "backend",
"version": "1.0.0",
"main": "server.js",
"license": "MIT",
"private": true,
"type": "module",
"dependencies": {
"@aws-sdk/client-cloudfront": "^3.583.0",
"@aws-sdk/client-s3": "^3.703.0",
"@aws-sdk/cloudfront-signer": "^3.576.0",
"@envoy-js/express": "^1.0.17",
"@wesleytodd/openapi": "git+https://github.com/erikjuhani/express-openapi.git#express-openapi-types",
"async-lock": "^1.3.1",
"body-parser": "^1.19.0",
"bson": "^6.2.0",
"cheerio": "^1.0.0-rc.12",
"compression": "^1.7.5",
"connect-pg-simple": "^10.0.0",
"cors": "^2.8.5",
"discord-api-types": "^0.37.103",
"dotenv": "^16.3.1",
"express": "^4.19.2",
"express-session": "^1.17.2",
"express-ws": "^5.0.2",
"graphql": "^16.8.1",
"graphql-request": "^7.1.2",
"jsonschema": "^1.4.0",
"knex": "^3.1.0",
"lru-cache": "^11.0.2",
"moment": "^2.29.4",
"multer": "^1.4.5-lts.1",
"node-fetch": "^3.3.2",
"passport": "^0.7.0",
"passport-discord": "https://github.com/tonestrike/passport-discord.git",
"passport-oauth2-refresh": "^2.1.0",
"pg": "^8.6.0",
"rate-limiter-flexible": "^5.0.4",
"sitemap": "^8.0.0",
"typescript": "^5.2.2",
"universal-cookie": "^7.0.1",
"winston": "^3.17.0",
"ws": "^8.2.3"
},
"devDependencies": {
"@discordjs/rest": "^2.0.1",
"@types/async-lock": "^1.1.3",
"@types/compression": "^1",
"@types/connect-pg-simple": "^7.0.0",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.21",
"@types/express-session": "^1.17.4",
"@types/express-ws": "^3.0.1",
"@types/multer": "^1.4.7",
"@types/node": "^20.12.12",
"@types/node-fetch": "^2.5.12",
"@types/passport": "^1.0.7",
"@types/passport-discord": "^0.1.14",
"@types/passport-oauth2-refresh": "^1.1.1",
"@types/pg": "^8.6.1",
"@types/ws": "^8.2.0",
"@eslint/js": "^9.16.0",
"typescript-eslint": "^8.12.2",
"eslint": "^9.19.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-config-prettier": "^9.1.0",
"prettier": "^3.4.2",
"prettier-config-nick": "^1.0.8",
"tsx": "^4.7.2",
"typescript": "^5.2.2"
},
"scripts": {
"dev": "tsx watch src/server.ts",
"buildrun": "build && start",
"start": "tsx watch src/server.ts",
"build": "tsc"
},
"eslintConfig": {
"root": true,
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/eslint-recommended",
"plugin:@typescript-eslint/recommended"
],
"parser": "@typescript-eslint/parser",
"plugins": [
"prettier",
"@typescript-eslint"
],
"rules": {
"prettier/prettier": "error",
"@typescript-eslint/no-explicit-any": "warn",
"@typescript-eslint/no-unused-vars": "warn",
"@typescript-eslint/ban-ts-comment": "warn",
"no-empty": "warn"
}
},
"prettier": "prettier-config-nick"
}