-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.28 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.28 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
{
"name": "hazel-proxy",
"version": "0.0.1",
"description": "proxy server for hazelcord",
"main": "dist/main.js",
"type": "module",
"engines": {
"node": ">=20"
},
"packageManager": "yarn@4.0.0-rc.51",
"scripts": {
"lint": "tsc && eslint .",
"start": "tsc && node ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/retrixe/hazel-proxy.git"
},
"author": "Ibrahim Ansari <ansari.ibrahim1@gmail.com>",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/retrixe/hazel-proxy/issues"
},
"homepage": "https://github.com/retrixe/hazel-proxy#readme",
"dependencies": {
"fastify": "^4.23.2",
"jsonwebtoken": "^9.0.2",
"undici": "^5.25.2"
},
"devDependencies": {
"@tsconfig/node20": "^20.1.2",
"@types/jsonwebtoken": "^9",
"@types/node": "^20.7.1",
"@typescript-eslint/eslint-plugin": "^6.7.3",
"@typescript-eslint/parser": "^6.7.3",
"eslint": "^8.50.0",
"eslint-config-prettier": "^9.0.0",
"eslint-config-standard-with-typescript": "^39.1.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-n": "^16.1.0",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-promise": "^6.1.1",
"husky": "^8.0.3",
"prettier": "^3.0.3",
"typescript": "^5.2.2"
}
}